mailiverse/cpp/iOS/Mailiverse/Utilities/WorkerThread.h

14 lines
271 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 WorkerThread : NSObject
- (void)performSelector:(SEL)selector withTarget:(id)target withObject:(id)object;
- (void)invalidate;
- (bool)isFinished;
@end