From 3ca0d6c07b45fd0aca092bd6d9272b2f0dda6fe1 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 7 Jul 2009 16:17:24 +0200 Subject: Added dbus client to commlayer --- lib/CommLayer/CommLayerClientDBus.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/CommLayer/CommLayerClientDBus.cpp (limited to 'lib/CommLayer/CommLayerClientDBus.cpp') diff --git a/lib/CommLayer/CommLayerClientDBus.cpp b/lib/CommLayer/CommLayerClientDBus.cpp new file mode 100644 index 0000000..6f4e4b5 --- /dev/null +++ b/lib/CommLayer/CommLayerClientDBus.cpp @@ -0,0 +1,13 @@ +#include "CommLayerClientDBus.h" +CCommLayerClientDBus::CCommLayerClientDBus(DBus::Connection &connection, const char *path, const char *name) +: DBus::ObjectProxy(connection, path, name) +{ +} +CCommLayerClientDBus::~CCommLayerClientDBus() +{ +}; + +void Crash(std::string &value) +{ + std::cout << "Another Crash?" << std::endl; +} -- cgit