2013-12-05 05:57:44 +00:00
|
|
|
//
|
|
|
|
// LAAppDelegate.h
|
|
|
|
// photobackup
|
|
|
|
//
|
|
|
|
// Created by Nick O'Neill on 10/20/13.
|
|
|
|
// Copyright (c) 2013 The Camlistore Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2013-12-09 04:50:03 +00:00
|
|
|
#import <CoreLocation/CoreLocation.h>
|
|
|
|
#import "LACamliClient.h"
|
2013-12-05 05:57:44 +00:00
|
|
|
|
2013-12-09 04:50:03 +00:00
|
|
|
@class ALAssetsLibrary;
|
|
|
|
|
|
|
|
@interface LAAppDelegate : UIResponder <UIApplicationDelegate,CLLocationManagerDelegate>
|
2013-12-05 05:57:44 +00:00
|
|
|
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
2013-12-09 04:50:03 +00:00
|
|
|
@property CLLocationManager *locationManager;
|
|
|
|
|
|
|
|
@property LACamliClient *client;
|
|
|
|
// kicked out of the library if we don't have a reference and still want to play with the books
|
|
|
|
@property ALAssetsLibrary *library;
|
|
|
|
|
2013-12-05 05:57:44 +00:00
|
|
|
|
|
|
|
@end
|