mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-30 16:13:55 +00:00
22 lines
382 B
Objective-C
22 lines
382 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import "WindowController.h"
|
|
|
|
@interface App : NSObject {
|
|
|
|
}
|
|
|
|
@property (nonatomic, retain) WebView *webView;
|
|
|
|
- (id) initWithWebView:(WebView *)view;
|
|
|
|
- (void) terminate;
|
|
- (void) activate;
|
|
- (void) hide;
|
|
- (void) unhide;
|
|
- (void) beep;
|
|
- (void) bounce;
|
|
- (void) setCustomUserAgent:(NSString *)userAgentString;
|
|
- (NSNumber*) systemIdleTime;
|
|
@end
|