30 lines
723 B
Objective-C
30 lines
723 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 "ViewControllerServiceMenu.h"
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
#pragma mark - Shared Dropbox client
|
|
/// Shared Dropbox client
|
|
@property (strong, nonatomic) DropboxV2ObjC *dbClient;
|
|
|
|
#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
|