From 13483daa13d1b366fa9c7222361c094d3726f03e Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 14 Sep 2009 14:57:55 +0200 Subject: move lib/CommLayer/CommLayerClientDBus.{h,cpp) -> src/CLI Signed-off-by: Denys Vlasenko --- src/CLI/CommLayerClientDBus.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/CLI/CommLayerClientDBus.cpp (limited to 'src/CLI/CommLayerClientDBus.cpp') diff --git a/src/CLI/CommLayerClientDBus.cpp b/src/CLI/CommLayerClientDBus.cpp new file mode 100644 index 0000000..7798346 --- /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; +} -- cgit