mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 17:38:59 +00:00
add xmlrpc-c 1.03.14 to in tree libs
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3772 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
19
libs/xmlrpc-c/tools/xml-rpc-api2cpp/XmlRpcClass.hpp
Normal file
19
libs/xmlrpc-c/tools/xml-rpc-api2cpp/XmlRpcClass.hpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#include <vector>
|
||||
|
||||
class XmlRpcClass {
|
||||
std::string mClassName;
|
||||
std::vector<XmlRpcFunction> mFunctions;
|
||||
|
||||
|
||||
public:
|
||||
XmlRpcClass (std::string class_name);
|
||||
XmlRpcClass (const XmlRpcClass&);
|
||||
XmlRpcClass& operator= (const XmlRpcClass&);
|
||||
|
||||
std::string className () const { return mClassName; }
|
||||
|
||||
void addFunction (const XmlRpcFunction& function);
|
||||
|
||||
void printDeclaration (ostream& out);
|
||||
void printDefinition (ostream& out);
|
||||
};
|
Reference in New Issue
Block a user