mirror of
https://github.com/ZipArchive/ZipArchive.git
synced 2026-05-31 10:27:32 +00:00
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
|