Files
2019-01-25 17:01:52 +08:00

16 lines
251 B
Objective-C

#import <Cocoa/Cocoa.h>
@class HTTPServer;
@interface DynamicServerAppDelegate : NSObject <NSApplicationDelegate>
{
HTTPServer *httpServer;
NSWindow *__unsafe_unretained window;
}
@property (unsafe_unretained) IBOutlet NSWindow *window;
@end