DELETEResponse.h 149 B

12345678
  1. #import "HTTPResponse.h"
  2. @interface DELETEResponse : NSObject <HTTPResponse> {
  3. NSInteger _status;
  4. }
  5. - (id) initWithFilePath:(NSString*)path;
  6. @end