FMCPlanner2/FMC Planner 2/AppDelegate.h

32 lines
757 B
Objective-C

//
// AppDelegate.h
// FMC Planner 2
//
// Created by Kilian Hofmann on 19.03.16.
// Copyright © 2016 Kilian Hofmann. All rights reserved.
//
#import "DropboxV2ObjC.h"
#import "NavDataParser.h"
#import "ViewController.h"
#import "ViewControllerServiceMenu.h"
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
#pragma mark - Refrence to other views in app
@property (strong, nonatomic) ViewController *main;
#pragma mark - Refrence to authentication web view in order to dismiss it
@property (strong, nonatomic) UIViewController *smWebView;
#pragma mark - Refrence to main view for Alerts and shit.
@property (strong, nonatomic) UIViewController *smMenu;
@end