ZeroTierOne/ext/mac-ui-macgap1-wrapper/src/MacGap/WindowController.h
2015-05-08 12:35:41 -07:00

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