mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 01:26:58 +00:00
merged new xmlrpc-c revision 1472 from https://xmlrpc-c.svn.sourceforge.net/svnroot/xmlrpc-c/trunk
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
@@ -1,19 +1,22 @@
|
||||
#include <vector>
|
||||
|
||||
class XmlRpcClass {
|
||||
// An object of this class contains information about a proxy
|
||||
// class, and knows how to generate code.
|
||||
|
||||
std::string mClassName;
|
||||
std::vector<XmlRpcFunction> mFunctions;
|
||||
|
||||
|
||||
public:
|
||||
XmlRpcClass (std::string class_name);
|
||||
XmlRpcClass (const XmlRpcClass&);
|
||||
XmlRpcClass& operator= (const XmlRpcClass&);
|
||||
XmlRpcClass (std::string const& className);
|
||||
XmlRpcClass(XmlRpcClass const&);
|
||||
XmlRpcClass& operator= (XmlRpcClass const&);
|
||||
|
||||
std::string className () const { return mClassName; }
|
||||
|
||||
void addFunction (const XmlRpcFunction& function);
|
||||
|
||||
void printDeclaration (ostream& out);
|
||||
void printDefinition (ostream& out);
|
||||
void printDeclaration (ostream& out) const;
|
||||
void printDefinition (ostream& out) const;
|
||||
};
|
||||
|
Reference in New Issue
Block a user