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

24 lines
327 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 *progressEvents;
}
@end