PUTResponse.h 297 B

123456789
  1. #import "HTTPResponse.h"
  2. @interface PUTResponse : NSObject <HTTPResponse> {
  3. NSInteger _status;
  4. }
  5. - (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyData:(NSData*)body;
  6. - (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyFile:(NSString*)body;
  7. @end