mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-08 08:51:50 +00:00
3abb7730b2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3772 d0543943-73ff-0310-b7d9-9358b9ac24b2
20 lines
452 B
C++
20 lines
452 B
C++
#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);
|
|
};
|