mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-25 22:00:14 +00:00
14 lines
286 B
C
14 lines
286 B
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
|