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

15 lines
257 B
Objective-C
Executable File

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