blob: 920c0e14fb1c146d111cf3b6f8bbafe88e922786 [file] [log] [blame]
#import <Foundation/Foundation.h>
#import "HTTPResponse.h"
@interface HTTPDataResponse : NSObject <HTTPResponse>
{
NSUInteger offset;
NSData *data;
}
- (id)initWithData:(NSData *)data;
@end