mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-13 16:38:08 -05:00
23 lines
599 B
Objective-C
Executable File
23 lines
599 B
Objective-C
Executable File
//
|
|
// LocalNotification.h
|
|
// Phonegap LocalNotification Plugin
|
|
// Copyright (c) Greg Allen 2011 & 2012 Drew Dahlman
|
|
// MIT Licensed
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#ifdef CORDOVA_FRAMEWORK
|
|
#import <Cordova/CDVPlugin.h>
|
|
#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
|