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