mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
33 lines
399 B
Objective-C
Executable file
33 lines
399 B
Objective-C
Executable file
#import <Foundation/Foundation.h>
|
|
|
|
@class XMLRPCDecoder;
|
|
|
|
@interface XMLRPCResponse : NSObject {
|
|
NSString *myBody;
|
|
id myObject;
|
|
BOOL isFault;
|
|
}
|
|
|
|
- (id)initWithData: (NSData *)data;
|
|
|
|
#pragma mark -
|
|
|
|
- (BOOL)isFault;
|
|
|
|
- (NSNumber *)faultCode;
|
|
|
|
- (NSString *)faultString;
|
|
|
|
#pragma mark -
|
|
|
|
- (id)object;
|
|
|
|
#pragma mark -
|
|
|
|
- (NSString *)body;
|
|
|
|
#pragma mark -
|
|
|
|
- (NSString *)description;
|
|
|
|
@end
|