libiqxmlrpc  0.12.12
builtins.h
1 // Libiqxmlrpc - an object-oriented XML-RPC solution.
2 // Copyright (C) 2011 Anton Dedov
3 
4 #ifndef _iqxmlrpc_buildins_h_
5 #define _iqxmlrpc_buildins_h_
6 
7 #include "method.h"
8 
9 namespace iqxmlrpc {
10 
11 class Method_dispatcher_manager;
12 
13 namespace builtins {
14 
17 class LIBIQXMLRPC_API List_methods: public Method {
18  Method_dispatcher_manager* disp_manager_;
19 
20 public:
22 
23 private:
24  void execute( const Param_list& params, Value& response );
25 };
26 
27 } // namespace builtins
28 } // namespace iqxmlrpc
29 
30 #endif
Proxy class to access XML-RPC values by library users.
Definition: value.h:19
Definition: method.h:48
XML-RPC library.
Definition: auth_plugin.cc:6
Class that encapsulate control of multiple method dispatchers.
Definition: dispatcher_manager.h:23
std::vector< Value > Param_list
Method's parameters type.
Definition: method.h:22
Definition: builtins.h:17