cmake/Tests/iOSNavApp/Classes/NavApp3AppDelegate.h

22 lines
452 B
C
Raw Normal View History

2012-02-18 12:40:36 +02:00
//
// NavApp3AppDelegate.h
// NavApp3
//
// Created by David Cole on 6/23/11.
// Copyright 2011 Kitware, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
2016-07-09 11:21:54 +02:00
@interface NavApp3AppDelegate : NSObject<UIApplicationDelegate> {
2012-02-18 12:40:36 +02:00
2016-07-09 11:21:54 +02:00
UIWindow* window;
UINavigationController* navigationController;
2012-02-18 12:40:36 +02:00
}
2016-07-09 11:21:54 +02:00
@property (nonatomic, retain) IBOutlet UIWindow* window;
@property (nonatomic, retain)
IBOutlet UINavigationController* navigationController;
2012-02-18 12:40:36 +02:00
@end