18 lines
336 B
C
18 lines
336 B
C
|
//
|
||
|
// UnrarExampleAppDelegate.h
|
||
|
// UnrarExample
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@class UnrarExampleViewController;
|
||
|
|
||
|
@interface UnrarExampleAppDelegate : NSObject <UIApplicationDelegate>
|
||
|
|
||
|
@property (nonatomic, strong) IBOutlet UIWindow *window;
|
||
|
@property (nonatomic, strong) IBOutlet UnrarExampleViewController *viewController;
|
||
|
|
||
|
@end
|
||
|
|