Menu

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

Download this file

86 lines (51 with data), 1.7 kB

 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include <iostream>
#include <stdexcept>
#include <vector>
using namespace std;
#include "xmlrpc-c/client_simple.hpp"
#include "xmlrpcType.hpp"
#include "xmlrpcMethod.hpp"
#include "proxyClass.hpp"
proxyClass::proxyClass(string const& className) :
_className(className) {}
proxyClass::proxyClass(proxyClass const& c) :
_className(c._className),
functions(c.functions) {}
string
proxyClass::className() const {
return this->_className;
}
void
proxyClass::addFunction(xmlrpcMethod const& function) {
functions.push_back(function);
}
void
proxyClass::printDeclaration(ostream & out) const {
out << "class " << this->_className << " {" << endl;
out << endl;
out << "public:" << endl;
// emit the constructor prototype:
out << " " << this->_className << "(std::string const& serverUrl) "
<< endl
<< " : serverUrl(serverUrl) {}"
<< endl;
// emit the XML-RPC method method prototypes:
vector<xmlrpcMethod>::const_iterator f;
for (f = this->functions.begin(); f < this->functions.end(); ++f) {
f->printDeclarations(out);
}
// emit the private data:
out << "private:" << endl;
out << " xmlrpc_c::clientSimple client;" << endl;
out << " std::string const serverUrl;" << endl;
out << " // The URL for the server for which we are proxy" << endl;
// emit the class closing:
out << "};" << endl;
}
void
proxyClass::printDefinition(ostream & out) const {
vector<xmlrpcMethod>::const_iterator f;
for (f = this->functions.begin(); f < this->functions.end(); ++f) {
f->printDefinitions(out, this->_className);
}
}
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.