mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-06 06:14:53 +00:00
16 lines
251 B
Objective-C
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
|