mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-21 12:18:07 -05:00
19 lines
343 B
Objective-C
19 lines
343 B
Objective-C
/**
|
|
* Bundle File Reader Plugin
|
|
* Copyright (c) 2011 Tim Fischbach (github.com/tf)
|
|
* MIT licensed
|
|
*/
|
|
|
|
#ifdef PHONEGAP_FRAMEWORK
|
|
#import <PhoneGap/PGPlugin.h>
|
|
#else
|
|
#import "PGPlugin.h"
|
|
#endif
|
|
|
|
@interface BundleFileReader : PGPlugin {
|
|
}
|
|
|
|
- (void)readResource:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
|
|
@end
|