Files
phonegap-plugins/iOS/GoogleAnalytics/GoogleAnalyticsPlugin.h
2012-08-29 21:15:38 -07:00

25 lines
782 B
Objective-C

//
// GoogleAnalyticsPlugin.h
// Google Analytics plugin for PhoneGap
//
// Created by Jesse MacFadyen on 11-04-21.
// Updated to 1.x by Olivier Louvignes on 11-11-24.
// Updated to 1.5 by Chris Kihneman on 12-04-09.
// MIT Licensed
//
#import <Foundation/Foundation.h>
#import <Cordova/CDVPlugin.h>
#import "GANTracker.h"
@interface GoogleAnalyticsPlugin : CDVPlugin <GANTrackerDelegate> {
}
- (void) startTrackerWithAccountID:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
- (void) trackEvent:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
- (void) setCustomVariable:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
- (void) trackPageview:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
@end