mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-11 15:33:07 +00:00
14 lines
286 B
Objective-C
14 lines
286 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import "ContentView.h"
|
|
|
|
@interface WindowController : NSWindowController {
|
|
|
|
}
|
|
|
|
- (id) initWithURL:(NSString *) url;
|
|
- (id) initWithRequest: (NSURLRequest *)request;
|
|
@property (retain) NSURL * url;
|
|
@property (retain) IBOutlet ContentView *contentView;
|
|
|
|
@end
|