libiqxmlrpc  0.12.4
 All Classes Namespaces Files Functions Typedefs Enumerations
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