diff --git a/Flurry API Documentation/_flurry_8h_source.html b/Flurry API Documentation/_flurry_8h_source.html new file mode 100755 index 0000000..650198b --- /dev/null +++ b/Flurry API Documentation/_flurry_8h_source.html @@ -0,0 +1,191 @@ + + + + + + +Flurry iOS 4.2.4: /Users/Akshay/Downloads/Flurry.Release.4.2.4/Flurry/Flurry.h Source File + + + + + + + + + + + + + +
+
+ + + + + + + +
+
Flurry iOS 4.2.4 +
+
+ + + + + + +
+
+
+ + + +
+
+ +
+
+
+ +
+ +
+ All Classes Functions Pages
+ + +
+ +
+ +
+
+
Flurry.h
+
+
+
1 //
+
2 // Flurry.h
+
3 // Flurry iOS Analytics Agent
+
4 //
+
5 // Copyright 2009-2012 Flurry, Inc. All rights reserved.
+
6 //
+
7 // Methods in this header file are for use with Flurry Analytics
+
8 
+
9 #import <UIKit/UIKit.h>
+
10 
+
32 typedef enum {
+
33  FlurryLogLevelNone = 0, //No output
+
34  FlurryLogLevelCriticalOnly, //Default, outputs only crytical log events
+
35  FlurryLogLevelDebug, //Debug level, outputs crytical and main log events
+
36  FlurryLogLevelAll //Highest level, outputs all log events
+
37 } FlurryLogLevel;
+
38 
+
39 
+
40 @interface Flurry : NSObject {
+
41 }
+
42 
+
47 
+
61 + (void)setAppVersion:(NSString *)version;
+
62 
+
80 + (NSString *)getFlurryAgentVersion;
+
81 
+
98 + (void)setShowErrorInLogEnabled:(BOOL)value;
+
99 
+
114 + (void)setDebugLogEnabled:(BOOL)value;
+
115 
+
128 + (void)setLogLevel:(FlurryLogLevel)value;
+
129 
+
142 + (void)setSessionContinueSeconds:(int)seconds;
+
143 
+
155 + (void)setSecureTransportEnabled:(BOOL)value;
+
156 
+
168 + (void)setCrashReportingEnabled:(BOOL)value;
+
169 
+
171 
+
202 + (void)startSession:(NSString *)apiKey;
+
203 
+
204 
+
234 + (void) startSession:(NSString *)apiKey withOptions:(id)options;
+
235 
+
236 
+
256 + (void)pauseBackgroundSession;
+
257 
+
258 
+
263 
+
298 + (void)logEvent:(NSString *)eventName;
+
299 
+
342 + (void)logEvent:(NSString *)eventName withParameters:(NSDictionary *)parameters;
+
343 
+
372 + (void)logError:(NSString *)errorID message:(NSString *)message exception:(NSException *)exception;
+
373 
+
393 + (void)logError:(NSString *)errorID message:(NSString *)message error:(NSError *)error;
+
394 
+
432 + (void)logEvent:(NSString *)eventName timed:(BOOL)timed;
+
433 
+
479 + (void)logEvent:(NSString *)eventName withParameters:(NSDictionary *)parameters timed:(BOOL)timed;
+
480 
+
526 + (void)endTimedEvent:(NSString *)eventName withParameters:(NSDictionary *)parameters; // non-nil parameters will update the parameters
+
527 
+
529 
+
530 
+
535 
+
559 + (void)logAllPageViews:(id)target;
+
560 
+
579 + (void)logPageView;
+
580 
+
582 
+
587 
+
597 + (void)setUserID:(NSString *)userID;
+
598 
+
612 + (void)setAge:(int)age;
+
613 
+
628 + (void)setGender:(NSString *)gender; // user's gender m or f
+
629 
+
631 
+
670 + (void)setLatitude:(double)latitude longitude:(double)longitude horizontalAccuracy:(float)horizontalAccuracy verticalAccuracy:(float)verticalAccuracy;
+
671 
+
673 
+
678 
+
692 + (void)setSessionReportsOnCloseEnabled:(BOOL)sendSessionReportsOnClose;
+
693 
+
703 + (void)setSessionReportsOnPauseEnabled:(BOOL)setSessionReportsOnPauseEnabled;
+
704 
+
721 + (void)setBackgroundSessionEnabled:(BOOL)setBackgroundSessionEnabled;
+
722 
+
732 + (void)setEventLoggingEnabled:(BOOL)value;
+
733 
+
742 + (void)setPushToken:(NSString *)pushToken;
+
743 
+
744 
+
746 
+
747 @end
+
+
+