mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-14 16:58:03 -05:00
21 lines
412 B
Objective-C
21 lines
412 B
Objective-C
//
|
|
// ExtractZipFilePlugin.h
|
|
//
|
|
// Created by Shaun Rowe on 10/05/2012.
|
|
// Copyright (c) 2012 Pobl Creative Cyf. All rights reserved.
|
|
//
|
|
|
|
#import <Cordova/CDVPlugin.h>
|
|
#import "SSZipArchive.h"
|
|
|
|
@interface ExtractZipFilePlugin : CDVPlugin
|
|
{
|
|
NSString *callbackID;
|
|
}
|
|
|
|
@property (nonatomic, copy) NSString* callbackID;
|
|
|
|
- (void)extract:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
|
|
@end
|