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:
authorAlex Zolotarev <alex@maps.me>2015-03-04 18:22:30 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:38:07 +0300
commit4f3b0f713e6e3c9b010f30194a5782fa7971822d (patch)
tree903fff132c7d6cba2071278cae36a0e4ca7fa295 /3party/Alohalytics/src/alohalytics_objc.h
parent3363aba81c28935c23de60f5874ce11c77796868 (diff)
[alohalytics] Updated library version (now with iOS support).
Diffstat (limited to '3party/Alohalytics/src/alohalytics_objc.h')
-rw-r--r--3party/Alohalytics/src/alohalytics_objc.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/3party/Alohalytics/src/alohalytics_objc.h b/3party/Alohalytics/src/alohalytics_objc.h
new file mode 100644
index 0000000000..3b026c7eae
--- /dev/null
+++ b/3party/Alohalytics/src/alohalytics_objc.h
@@ -0,0 +1,53 @@
+/*******************************************************************************
+ The MIT License (MIT)
+
+ Copyright (c) 2015 Alexander Zolotarev <me@alex.bio> from Minsk, Belarus
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
+ *******************************************************************************/
+
+// Convenience header to use from pure Objective-C project.
+
+#ifndef ALOHALYTICS_OBJC_H
+#define ALOHALYTICS_OBJC_H
+
+#import <Foundation/Foundation.h>
+#import <CoreLocation/CoreLocation.h>
+
+@interface Alohalytics : NSObject
++ (void)setDebugMode:(BOOL)enable;
+// Should be called in application:didFinishLaunchingWithOptions:
+// or in application:willFinishLaunchingWithOptions:
++ (void)setup:(NSString *)serverUrl withLaunchOptions:(NSDictionary *)options;
+// Alternative to the previous setup method if you integrated Alohalytics after initial release
+// and don't want to count app upgrades as new installs (and definitely know that it's an already existing user).
++ (void)setup:(NSString *)serverUrl andFirstLaunch:(BOOL)isFirstLaunch withLaunchOptions:(NSDictionary *)options;
++ (void)forceUpload;
++ (void)logEvent:(NSString *)event;
++ (void)logEvent:(NSString *)event atLocation:(CLLocation *)location;
++ (void)logEvent:(NSString *)event withValue:(NSString *)value;
++ (void)logEvent:(NSString *)event withValue:(NSString *)value atLocation:(CLLocation *)location;
+// Two convenience methods to log [key1,value1,key2,value2,...] arrays.
++ (void)logEvent:(NSString *)event withKeyValueArray:(NSArray *)array;
++ (void)logEvent:(NSString *)event withKeyValueArray:(NSArray *)array atLocation:(CLLocation *)location;
++ (void)logEvent:(NSString *)event withDictionary:(NSDictionary *)dictionary;
++ (void)logEvent:(NSString *)event withDictionary:(NSDictionary *)dictionary atLocation:(CLLocation *)location;
+@end
+
+#endif // #ifndef ALOHALYTICS_OBJC_H