BenchmarkIPhoneAppDelegate.h 453 B

123456789101112131415161718192021
  1. //
  2. // BenchmarkIPhoneAppDelegate.h
  3. // BenchmarkIPhone
  4. //
  5. // CocoaLumberjack Demos
  6. //
  7. #import <UIKit/UIKit.h>
  8. @class BenchmarkIPhoneViewController;
  9. @interface BenchmarkIPhoneAppDelegate : NSObject <UIApplicationDelegate>
  10. {
  11. UIWindow *window;
  12. BenchmarkIPhoneViewController *viewController;
  13. }
  14. @property (nonatomic, strong) IBOutlet UIWindow *window;
  15. @property (nonatomic, strong) IBOutlet BenchmarkIPhoneViewController *viewController;
  16. @end