mirror of
https://github.com/ZipArchive/ZipArchive.git
synced 2026-05-01 10:22:26 +00:00
24 lines
512 B
Objective-C
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
|