mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-08 14:01:20 -07:00
13 lines
286 B
Objective-C
13 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
|