Blame client/iOS/AppDelegate.h

Packit 1fb8d4
/*
Packit 1fb8d4
 App delegate
Packit 1fb8d4
 
Packit 1fb8d4
 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
Packit 1fb8d4
 
Packit 1fb8d4
 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. 
Packit 1fb8d4
 If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit 1fb8d4
 */
Packit 1fb8d4
Packit 1fb8d4
#import <UIKit/UIKit.h>
Packit 1fb8d4
Packit 1fb8d4
@class MainTabBarController;
Packit 1fb8d4
Packit 1fb8d4
@interface AppDelegate : NSObject <UIApplicationDelegate> {
Packit 1fb8d4
Packit 1fb8d4
    MainTabBarController* _tabBarController;
Packit 1fb8d4
}
Packit 1fb8d4
Packit 1fb8d4
@property (nonatomic, retain) IBOutlet UIWindow *window;
Packit 1fb8d4
@property (nonatomic, retain) IBOutlet MainTabBarController* tabBarController;
Packit 1fb8d4
Packit 1fb8d4
@end