ZipArchive/SSZipArchive.h
2010-08-19 15:40:34 -05:00

20 lines
498 B
Objective-C

//
// SSZipArchive.h
// SSZipArchive
//
// Created by Sam Soffes on 7/21/10.
// Copyright Sam Soffes 2010. All rights reserved.
//
// Based on ZipArchive by aish
// http://code.google.com/p/ziparchive
//
@interface SSZipArchive : NSObject {
}
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination;
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination overwrite:(BOOL)overwrite password:(NSString *)password error:(NSError **)error;
@end