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