-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAppDelegate.h
26 lines (21 loc) · 914 Bytes
/
AppDelegate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//"This work is licensed under the Attribution-NonCommercial-ShareAlike 3.0 Unported License.
// To view a copy of the license, visit http://http://creativecommons.org/licenses/by-nc-sa/3.0/ "
//
// AppDelegate.h
// Timeline
//
// Created by Alessandro Boron on 08/08/2012.
// Copyright (c) 2012 Alessandro Boron. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
@class XMPPRequestController;
@class DBController;
@interface AppDelegate : UIResponder <UIApplicationDelegate,CLLocationManagerDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) CLLocationManager *locationManager;
@property (strong, nonatomic) CLLocation *userLocation;
@property (strong, nonatomic) XMPPRequestController *xmppRequestController;
@property (strong, nonatomic) DBController *dbController;
@property (strong, nonatomic) Reachability *reachability;
@end