Files
macSVG-mirror/CocoaHTTPServer-master/Samples/DynamicServer/DynamicServerAppDelegate.h
2016-09-15 10:13:52 -05:00

16 lines
251 B
Objective-C
Executable File

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