HTTPDataResponse.h 196 B

1234567891011121314
  1. #import <Foundation/Foundation.h>
  2. #import "HTTPResponse.h"
  3. @interface HTTPDataResponse : NSObject <HTTPResponse>
  4. {
  5. NSUInteger offset;
  6. NSData *data;
  7. }
  8. - (id)initWithData:(NSData *)data;
  9. @end