10 lines
242 B
Objective-C
10 lines
242 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "SSZipArchive.h"
|
|
|
|
/**
|
|
* Test delegate by collecting its calls
|
|
*/
|
|
@interface CollectingDelegate : NSObject <SSZipArchiveDelegate>
|
|
@property(nonatomic, retain) NSMutableArray<NSString *> *files;
|
|
@end
|