mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
16 lines
251 B
Objective-C
Executable File
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
|