mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-18 23:15:03 -05:00
18 lines
235 B
C
18 lines
235 B
C
|
/**
|
||
|
* 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
|