Merge branch 'master' of https://code.grnet.gr/git/pithos-ios
[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 "ASIProgressDelegate.h"
10
11 @interface AnimatedProgressView : UIProgressView {
12     NSTimer *progressTimer;
13     CGFloat targetProgress;
14 }
15
16 - (void)setProgress:(CGFloat)progress animated:(BOOL)animated;
17
18 @end