Statistics
| Branch: | Revision:

root / programs / ios / WebODF / Classes / NativeZip.h @ cfb53624

History | View | Annotate | Download (434 Bytes)

1
#import <PhoneGap/PGPlugin.h>
2
3
@interface NativeZip : PGPlugin {
4
     NSString* callbackID;
5
}
6
7
@property (nonatomic, copy) NSString* callbackID;
8
9
- (void) load:(BOOL)base64 arguments:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
10
- (void) loadAsString:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
11
- (void) loadAsDataURL:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
12
13
@end