// // LocalNotification.h // Phonegap LocalNotification Plugin // Copyright (c) Greg Allen 2011 & 2012 Drew Dahlman // MIT Licensed #import #ifdef CORDOVA_FRAMEWORK #import #else #import "CDVPlugin.h" #endif @interface LocalNotification : CDVPlugin { } - (void)addNotification:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; - (void)cancelNotification:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; - (void)cancelAllNotifications:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options; @end