summaryrefslogtreecommitdiff
path: root/PluginRoutingInterfaceDbus/DbusSend.h
diff options
context:
space:
mode:
Diffstat (limited to 'PluginRoutingInterfaceDbus/DbusSend.h')
-rw-r--r--PluginRoutingInterfaceDbus/DbusSend.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/PluginRoutingInterfaceDbus/DbusSend.h b/PluginRoutingInterfaceDbus/DbusSend.h
deleted file mode 100644
index bfb565d..0000000
--- a/PluginRoutingInterfaceDbus/DbusSend.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * DbusSend.h
- *
- * Created on: Jul 20, 2011
- * Author: christian
- */
-
-#ifndef DBUSSEND_H_
-#define DBUSSEND_H_
-
-#include "headers.h"
-
-class DbusSend {
-public:
- DbusSend(DBusConnection* conn, const char* bus_name,const char* path, const char* interface, const char* method);
- virtual ~DbusSend();
- void appendString(char* string);
- void appendInteger(int integer);
- void sendReply(bool* reply);
- void sendReply(int* reply);
-
-private:
- DBusMessage* m_msg;
- DBusMessageIter m_args;
- DBusConnection* m_conn;
-};
-
-#endif /* DBUSSEND_H_ */