Menu

[r1498]: / advanced / tools / xmlrpc_cpp_proxy / proxyClass.hpp  Maximize  Restore  History

Download this file

33 lines (21 with data), 590 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <vector>
#include <string>
#include "xmlrpcMethod.hpp"
class proxyClass {
// An object of this class contains information about a proxy
// class, and knows how to generate code.
public:
proxyClass(std::string const& className);
proxyClass(proxyClass const&);
std::string
className() const;
void
addFunction(xmlrpcMethod const& function);
void
printDeclaration(std::ostream& out) const;
void
printDefinition(std::ostream& out) const;
private:
std::string const _className;
std::vector<xmlrpcMethod> functions;
};
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.