2015-10-23 14:15:31 -04:00
|
|
|
#import <Foundation/Foundation.h>
|
2016-05-31 12:42:22 -07:00
|
|
|
#import "SSZipArchive.h"
|
2015-10-23 14:15:31 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Test delegate by collecting its calls
|
|
|
|
|
*/
|
|
|
|
|
@interface CollectingDelegate : NSObject <SSZipArchiveDelegate>
|
2017-09-14 00:31:27 +08:00
|
|
|
@property(nonatomic, retain) NSMutableArray<NSString *> *files;
|
|
|
|
|
@end
|