20 lines
359 B
Objective-C
20 lines
359 B
Objective-C
//
|
|
// AppDelegate_iPad.h
|
|
// AdWhirlTests
|
|
//
|
|
// Created by Nigel Choi on 8/5/10.
|
|
// Copyright __MyCompanyName__ 2010. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate_iPad : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
|
|
@end
|
|
|