2011-09-12 21:47:13 +04:00
|
|
|
//
|
|
|
|
// NavApp3AppDelegate.h
|
|
|
|
// NavApp3
|
|
|
|
//
|
|
|
|
// Created by David Cole on 6/23/11.
|
|
|
|
// Copyright 2011 Kitware, Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
@interface NavApp3AppDelegate : NSObject<UIApplicationDelegate> {
|
2011-09-12 21:47:13 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
UIWindow* window;
|
|
|
|
UINavigationController* navigationController;
|
2011-09-12 21:47:13 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow* window;
|
|
|
|
@property (nonatomic, retain)
|
|
|
|
IBOutlet UINavigationController* navigationController;
|
2011-09-12 21:47:13 +04:00
|
|
|
|
|
|
|
@end
|