mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-04-24 03:00:11 -04:00
17 lines
296 B
Objective-C
17 lines
296 B
Objective-C
/**
|
|
* @author Tim Fischbach <tfischbach@codevise.de>
|
|
*/
|
|
|
|
#ifdef PHONEGAP_FRAMEWORK
|
|
#import <PhoneGap/PGPlugin.h>
|
|
#else
|
|
#import "PGPlugin.h"
|
|
#endif
|
|
|
|
@interface BundleFileReader : PGPlugin {
|
|
}
|
|
|
|
- (void)readResource:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
|
|
@end
|