BOSS 7.0.7
BESIII Offline Software System
Loading...
Searching...
No Matches
Sum Class Reference
+ Inheritance diagram for Sum:

Public Member Functions

 Sum (XmlRpcServer *s)
 
void execute (XmlRpcValue &params, XmlRpcValue &result)
 Execute the method. Subclasses must provide a definition for this method.
 
- Public Member Functions inherited from XmlRpc::XmlRpcServerMethod
 XmlRpcServerMethod (std::string const &name, XmlRpcServer *server=0)
 Constructor.
 
virtual ~XmlRpcServerMethod ()
 Destructor.
 
std::string & name ()
 Returns the name of the method.
 
virtual void execute (XmlRpcValue &params, XmlRpcValue &result)=0
 Execute the method. Subclasses must provide a definition for this method.
 
virtual std::string help ()
 

Additional Inherited Members

- Protected Attributes inherited from XmlRpc::XmlRpcServerMethod
std::string _name
 
XmlRpcServer_server
 

Detailed Description

Definition at line 45 of file HelloServer.cpp.

Constructor & Destructor Documentation

◆ Sum()

Sum::Sum ( XmlRpcServer s)
inline

Definition at line 48 of file HelloServer.cpp.

48: XmlRpcServerMethod("Sum", s) {}
XmlRpcServer s
Definition: HelloServer.cpp:11
Abstract class representing a single RPC method.

Member Function Documentation

◆ execute()

void Sum::execute ( XmlRpcValue params,
XmlRpcValue result 
)
inlinevirtual

Execute the method. Subclasses must provide a definition for this method.

Implements XmlRpc::XmlRpcServerMethod.

Definition at line 50 of file HelloServer.cpp.

51 {
52 int nArgs = params.size();
53 double sum = 0.0;
54 for (int i=0; i<nArgs; ++i)
55 sum += double(params[i]);
56 result = sum;
57 }
int size() const
Return the size for string, base64, array, and struct values.

The documentation for this class was generated from the following file: