Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Khmurets <subzero@mapswithme.com>2014-10-10 18:05:32 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:30:41 +0300
commite5f65a930eec7fb48a6b24a055d3c78968d46d80 (patch)
tree3ffcb3adc7a522eecbffde1d3867240f526925c5 /iphone/Maps/Classes/MapsAppDelegate.h
parent545aaaafecb7c2add5029b7e4c635f2b6980ce6e (diff)
[ios] Downloader UI
Diffstat (limited to 'iphone/Maps/Classes/MapsAppDelegate.h')
-rw-r--r--iphone/Maps/Classes/MapsAppDelegate.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/iphone/Maps/Classes/MapsAppDelegate.h b/iphone/Maps/Classes/MapsAppDelegate.h
index 40376f5969..35b5d27074 100644
--- a/iphone/Maps/Classes/MapsAppDelegate.h
+++ b/iphone/Maps/Classes/MapsAppDelegate.h
@@ -1,13 +1,15 @@
+
#import <UIKit/UIKit.h>
#import "NavigationController.h"
+#import "MapsObservers.h"
@class MapViewController;
-@class SettingsManager;
@class LocationManager;
-@interface MapsAppDelegate : NSObject <UIApplicationDelegate, UIAlertViewDelegate>
+extern NSString * const MapsStatusChangedNotification;
+
+@interface MapsAppDelegate : NSObject <UIApplicationDelegate, UIAlertViewDelegate, ActiveMapsObserverProtocol>
{
- SettingsManager * m_settingsManager;
NSInteger m_standbyCounter;
NSInteger m_activeDownloadsCounter;
UIBackgroundTaskIdentifier m_backgroundTask;
@@ -21,8 +23,6 @@
+ (MapsAppDelegate *)theApp;
-- (SettingsManager *)settingsManager;
-
- (void)disableStandby;
- (void)enableStandby;