ZeroTierOne/ext/mac-ui-macgap1-wrapper/MacGap/WindowController.h

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