summaryrefslogtreecommitdiffstats
path: root/src/CLI/CommLayerClientDBus.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/CLI/CommLayerClientDBus.h')
-rw-r--r--src/CLI/CommLayerClientDBus.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/CLI/CommLayerClientDBus.h b/src/CLI/CommLayerClientDBus.h
new file mode 100644
index 00000000..9e63f58c
--- /dev/null
+++ b/src/CLI/CommLayerClientDBus.h
@@ -0,0 +1,17 @@
+#include <DBusCommon.h>
+#include <DBusClientProxy.h>
+#include <iostream>
+
+class CCommLayerClientDBus
+: public CDBusClient_proxy,
+ public DBus::IntrospectableProxy,
+ public DBus::ObjectProxy
+{
+ public:
+ CCommLayerClientDBus(DBus::Connection &connection, const char *path, const char *name);
+ ~CCommLayerClientDBus();
+ void Crash(std::string &value)
+ {
+ std::cout << "Another Crash?" << std::endl;
+ }
+};