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:
authorExMix <rahuba.youri@mapswithme.com>2014-11-19 12:05:51 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:33:05 +0300
commitca47ffbb1a5cf522e5f8fdeaa0cd2607cbf5e8fc (patch)
tree115dcc769411c9e1860e9cd728f6a7995e1bd4b3 /iphone/Maps/Classes/LocationPredictor.h
parente1aec6554e0201594d989b22b6c7ffd8da2e190d (diff)
[ios] location predictor
Diffstat (limited to 'iphone/Maps/Classes/LocationPredictor.h')
-rw-r--r--iphone/Maps/Classes/LocationPredictor.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/iphone/Maps/Classes/LocationPredictor.h b/iphone/Maps/Classes/LocationPredictor.h
new file mode 100644
index 0000000000..53bce91870
--- /dev/null
+++ b/iphone/Maps/Classes/LocationPredictor.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#import "../Platform/LocationManager.h"
+
+#import <Foundation/Foundation.h>
+
+@interface LocationPredictor : NSObject
+
+-(id)initWithObserver:(NSObject<LocationObserver> *) observer;
+-(void)reset:(location::GpsInfo const &) info;
+
+@end