moving test delegates to their own files

This commit is contained in:
Antoine Cœur
2017-10-04 23:46:51 +08:00
parent 0634a08c75
commit f59a2d6670
7 changed files with 178 additions and 105 deletions
@@ -0,0 +1,17 @@
//
// ProgressDelegate.h
// ObjectiveCExample
//
// Created by Antoine Cœur on 04/10/2017.
//
#import <Foundation/Foundation.h>
#import "SSZipArchive.h"
@interface ProgressDelegate : NSObject <SSZipArchiveDelegate>
{
@public
NSMutableArray *progressEvents;
}
@end