mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
21 lines
402 B
Objective-C
Executable File
21 lines
402 B
Objective-C
Executable File
#import <UIKit/UIKit.h>
|
|
|
|
@class InterfaceTestViewController;
|
|
@class AsyncSocket;
|
|
|
|
|
|
@interface InterfaceTestAppDelegate : NSObject <UIApplicationDelegate>
|
|
{
|
|
CFHostRef host;
|
|
AsyncSocket *asyncSocket;
|
|
|
|
UIWindow *window;
|
|
InterfaceTestViewController *viewController;
|
|
}
|
|
|
|
@property (nonatomic) IBOutlet UIWindow *window;
|
|
@property (nonatomic) IBOutlet InterfaceTestViewController *viewController;
|
|
|
|
@end
|
|
|