Files
ZipArchive/Example/ObjectiveCExampleTests/CollectingDelegate.h
T
2021-05-28 13:42:46 -07:00

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