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.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lib/CommLayer/CommLayerClientDBus.h (limited to 'lib/CommLayer/CommLayerClientDBus.h') diff --git a/lib/CommLayer/CommLayerClientDBus.h b/lib/CommLayer/CommLayerClientDBus.h new file mode 100644 index 0000000..9e63f58 --- /dev/null +++ b/lib/CommLayer/CommLayerClientDBus.h @@ -0,0 +1,17 @@ +#include +#include +#include + +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; + } +}; -- cgit