DAVResponse.h 343 B

1234567891011
  1. #import "HTTPResponse.h"
  2. @interface DAVResponse : NSObject <HTTPResponse> {
  3. @private
  4. UInt64 _offset;
  5. NSMutableDictionary* _headers;
  6. NSData* _data;
  7. NSInteger _status;
  8. }
  9. - (id) initWithMethod:(NSString*)method headers:(NSDictionary*)headers bodyData:(NSData*)body resourcePath:(NSString*)resourcePath rootPath:(NSString*)rootPath;
  10. @end