// // LocalNotification.h // Phonegap LocalNotification Plugin // Copyright (c) Greg Allen 2011 // MIT Licensed #import #ifdef PHONEGAP_FRAMEWORK #import #else #import "PGPlugin.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