14 lines
198 B
Objective-C
14 lines
198 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "HTTPResponse.h"
|
|
|
|
|
|
@interface HTTPDataResponse : NSObject <HTTPResponse>
|
|
{
|
|
NSUInteger offset;
|
|
NSData *data;
|
|
}
|
|
|
|
- (id)initWithData:(NSData *)data;
|
|
|
|
@end
|