summaryrefslogtreecommitdiff
path: root/StoneIsland/plugins/com.parse.cordova.core.pushplugin/src/ios/CDVParsePlugin.h
diff options
context:
space:
mode:
authorRene Ae <aehtyb@gmail.com>2015-12-11 03:05:10 -0600
committerRene Ae <aehtyb@gmail.com>2015-12-11 03:05:10 -0600
commitb1775dd32d1e0113eba81cfdb9a5626295eebc4e (patch)
tree19a2f4ea004d11037e494e863a39ac834d364429 /StoneIsland/plugins/com.parse.cordova.core.pushplugin/src/ios/CDVParsePlugin.h
parent3442b2821d30dd1ca6c6db1ba089ae3f5c95a758 (diff)
parent053473394e6e0990c68a924adbb7c7d75f35973d (diff)
Merge branch 'android' of https://github.com/okfocus/stone-island into android
Diffstat (limited to 'StoneIsland/plugins/com.parse.cordova.core.pushplugin/src/ios/CDVParsePlugin.h')
-rw-r--r--StoneIsland/plugins/com.parse.cordova.core.pushplugin/src/ios/CDVParsePlugin.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/StoneIsland/plugins/com.parse.cordova.core.pushplugin/src/ios/CDVParsePlugin.h b/StoneIsland/plugins/com.parse.cordova.core.pushplugin/src/ios/CDVParsePlugin.h
new file mode 100644
index 00000000..47e1a69c
--- /dev/null
+++ b/StoneIsland/plugins/com.parse.cordova.core.pushplugin/src/ios/CDVParsePlugin.h
@@ -0,0 +1,19 @@
+#import <Cordova/CDV.h>
+#import "AppDelegate.h"
+
+@interface CDVParsePlugin: CDVPlugin
+
+- (void)initialize: (CDVInvokedUrlCommand*)command;
+- (void)getInstallationId: (CDVInvokedUrlCommand*)command;
+- (void)getInstallationObjectId: (CDVInvokedUrlCommand*)command;
+- (void)getSubscriptions: (CDVInvokedUrlCommand *)command;
+- (void)subscribe: (CDVInvokedUrlCommand *)command;
+- (void)unsubscribe: (CDVInvokedUrlCommand *)command;
+- (void)resetBadge: (CDVInvokedUrlCommand *)command;
+- (void)trackEvent: (CDVInvokedUrlCommand *)command;
+
+@end
+
+@interface AppDelegate (CDVParsePlugin)
+- (void)handleRemoteNotification:(UIApplication *)application payload:(NSDictionary *)payload;
+@end