Files
ZipArchive/Example/ObjectiveCExampleTests/CancelDelegate.h
T
2021-05-28 13:38:44 -07:00

24 lines
512 B
Objective-C

//
// CancelDelegate.h
// ObjectiveCExample
//
// Created by Antoine Cœur on 04/10/2017.
//
#import <Foundation/Foundation.h>
#if COCOAPODS
#import <SSZipArchive.h>
#else
#import <ZipArchive.h>
#endif
@interface CancelDelegate : NSObject <SSZipArchiveDelegate>
@property (nonatomic, assign) int numFilesUnzipped;
@property (nonatomic, assign) int numFilesToUnzip;
@property (nonatomic, assign) BOOL didUnzipArchive;
@property (nonatomic, assign) int loaded;
@property (nonatomic, assign) int total;
@end