forked from Mirrors/freeswitch
00654d880e
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
23 lines
584 B
C++
23 lines
584 B
C++
#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 const& className);
|
|
XmlRpcClass(XmlRpcClass const&);
|
|
XmlRpcClass& operator= (XmlRpcClass const&);
|
|
|
|
std::string className () const { return mClassName; }
|
|
|
|
void addFunction (const XmlRpcFunction& function);
|
|
|
|
void printDeclaration (ostream& out) const;
|
|
void printDefinition (ostream& out) const;
|
|
};
|