mirror of
https://github.com/ZipArchive/ZipArchive.git
synced 2026-05-01 10:22:26 +00:00
16 lines
295 B
Objective-C
16 lines
295 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#if COCOAPODS
|
|
#import <SSZipArchive.h>
|
|
#else
|
|
#import <ZipArchive.h>
|
|
#endif
|
|
|
|
|
|
/**
|
|
* Test delegate by collecting its calls
|
|
*/
|
|
@interface CollectingDelegate : NSObject <SSZipArchiveDelegate>
|
|
@property(nonatomic, retain) NSMutableArray<NSString *> *files;
|
|
@end
|