Files
Cœur 4ce93ff4ff Updating to minizip-ng 4.0.7 (#724)
* Updating to minizip-ng 4.0.7

* Adding HAVE_ICONV
2024-10-28 18:08:25 +01:00

25 lines
379 B
Objective-C

//
// ProgressDelegate.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 ProgressDelegate : NSObject <SSZipArchiveDelegate>
{
@public
NSMutableArray<NSValue*> *fileInfos;
NSMutableArray<NSNumber*> *progressEvents;
}
@end