BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
ListMethods Class Reference
Inheritance diagram for ListMethods:

Public Member Functions

 ListMethods (XmlRpcServer *s)
void execute (XmlRpcValue &params, XmlRpcValue &result)
 Execute the method. Subclasses must provide a definition for this method.
std::string help ()
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.

Additional Inherited Members

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

Detailed Description

Definition at line 170 of file XmlRpcServer.cpp.

Constructor & Destructor Documentation

◆ ListMethods()

ListMethods::ListMethods ( XmlRpcServer * s)
inline

Definition at line 172 of file XmlRpcServer.cpp.

172: XmlRpcServerMethod( LIST_METHODS, s ) {}
XmlRpcServer s
XmlRpcServerMethod(std::string const &name, XmlRpcServer *server=0)
Constructor.

Member Function Documentation

◆ execute()

void ListMethods::execute ( XmlRpcValue & params,
XmlRpcValue & result )
inlinevirtual

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

Implements XmlRpc::XmlRpcServerMethod.

Definition at line 174 of file XmlRpcServer.cpp.

174{ _server->listMethods( result ); }

◆ help()

std::string ListMethods::help ( )
inlinevirtual

Returns a help string for the method. Subclasses should define this method if introspection is being used.

Reimplemented from XmlRpc::XmlRpcServerMethod.

Definition at line 176 of file XmlRpcServer.cpp.

176 {
177 return std::string( "List all methods available on a server as an array of strings" );
178 }

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