Files
ZipArchive/ObjectiveCExample/ObjectiveCExampleTests/CollectingDelegate.h
2016-05-31 12:42:22 -07:00

9 lines
229 B
Objective-C

#import <Foundation/Foundation.h>
#import "SSZipArchive.h"
/**
* Test delegate by collecting its calls
*/
@interface CollectingDelegate : NSObject <SSZipArchiveDelegate>
@property(nonatomic, retain) NSMutableArray *files;
@end