mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
15 lines
256 B
Objective-C
Executable file
15 lines
256 B
Objective-C
Executable file
#import <Foundation/Foundation.h>
|
|
|
|
@protocol XMLRPCEncoder <NSObject>
|
|
- (NSString *)encode;
|
|
|
|
#pragma mark -
|
|
|
|
- (void)setMethod: (NSString *)method withParameters: (NSArray *)parameters;
|
|
#pragma mark -
|
|
|
|
- (NSString *)method;
|
|
|
|
- (NSArray *)parameters;
|
|
|
|
@end
|