]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/configuration/rpcconfig/messages_methods.h
Port to CMake, get rid of os_int.h.
[stg.git] / projects / stargazer / plugins / configuration / rpcconfig / messages_methods.h
diff --git a/projects/stargazer/plugins/configuration/rpcconfig/messages_methods.h b/projects/stargazer/plugins/configuration/rpcconfig/messages_methods.h
deleted file mode 100644 (file)
index 7188d0b..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef __MESSAGES_METHODS_H__
-#define __MESSAGES_METHODS_H__
-
-#include <xmlrpc-c/base.hpp>
-#include <xmlrpc-c/registry.hpp>
-
-#include "stg/users.h"
-
-class RPC_CONFIG;
-
-class METHOD_MESSAGE_SEND : public xmlrpc_c::method {
-public:
-    METHOD_MESSAGE_SEND(RPC_CONFIG * c,
-                     USERS * u)
-        : config(c),
-          users(u)
-    {
-    }
-
-    void execute(xmlrpc_c::paramList const & paramList,
-                 xmlrpc_c::value * const retvalPtr);
-
-private:
-    METHOD_MESSAGE_SEND(const METHOD_MESSAGE_SEND & rvalue);
-    METHOD_MESSAGE_SEND & operator=(const METHOD_MESSAGE_SEND & rvalue);
-
-    RPC_CONFIG * config;
-    USERS * users;
-};
-
-#endif