Added public object functionality.
[pithos-ios] / Classes / AnimatedProgressView.h
1 //
2 //  AnimatedProgressView.h
3 //  OpenStack
4 //
5 //  Created by Mike Mayo on 10/29/10.
6 //  The OpenStack project is provided under the Apache 2.0 license.
7 //
8
9 #import <Foundation/Foundation.h>
10 #import "ASIProgressDelegate.h"
11
12
13 @interface AnimatedProgressView : UIProgressView {
14     NSTimer *progressTimer;
15     CGFloat targetProgress;
16 }
17
18 - (void)setProgress:(CGFloat)progress animated:(BOOL)animated;
19
20 @end