26 lines
610 B
C
Raw Normal View History

2014-01-20 18:27:31 +08:00
//
// PushTalkPlugin.h
// PushTalk
//
// Created by zhangqinghe on 13-12-13.
//
//
#import <Cordova/CDV.h>
2015-03-10 16:37:08 +08:00
#define kJPushPluginReceiveNotification @"JPushPluginReceiveNofication"
2014-01-20 18:27:31 +08:00
@interface JPushPlugin : CDVPlugin{
}
+(void)setLaunchOptions:(NSDictionary *)theLaunchOptions;
2014-01-20 18:27:31 +08:00
-(void)setTagsWithAlias:(CDVInvokedUrlCommand*)command;
-(void)setTags:(CDVInvokedUrlCommand*)command;
-(void)setAlias:(CDVInvokedUrlCommand*)command;
2014-06-04 13:20:24 +08:00
-(void)getRegistrationID:(CDVInvokedUrlCommand*)command;
2014-06-05 16:36:54 +08:00
-(void)startLogPageView:(CDVInvokedUrlCommand*)command;
-(void)stopLogPageView:(CDVInvokedUrlCommand*)command;
2014-01-20 18:27:31 +08:00
@end