Library
ISOXMLRPCRequest.h
1 //
2 // ISOXMLRPCRequest.h
3 // SOSign
4 //
5 // Created by Michael Knaus on 25.10.13.
6 // Copyright (c) 2013 StepOver GmbH. All rights reserved.
7 //
8 
9 #import "XMLRPCRequest.h"
10 
11 @interface ISOXMLRPCRequest : XMLRPCRequest {
12 
13 }
14 
15 - (id) initWithURL:(NSURL *)URL;
16 
17 - (NSString*) body;
18 
19 - (NSURLRequest *)request;
20 
21 + (void)gzip:(BOOL)flag;
22 
23 @end
Definition: ISOXMLRPCRequest.h:11