mailiverse/cpp/iOS/Mailiverse/Components/UINetworkActivityWrapper.h

18 lines
235 B
C
Raw Normal View History

2013-07-25 22:51:23 -04:00
/**
* Author: Timothy Prepscius
* License: BSD + keep my name in the code!
*/
#import <UIKit/UIKit.h>
@interface UINetworkActivityWrapper : NSObject {
NSTimer *timer;
int stack;
}
- (id)init;
- (void)start;
- (void)stop;
@end