diff options
Diffstat (limited to 'lib/CommLayer/CommLayerClientDBus.cpp')
| -rw-r--r-- | lib/CommLayer/CommLayerClientDBus.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/CommLayer/CommLayerClientDBus.cpp b/lib/CommLayer/CommLayerClientDBus.cpp new file mode 100644 index 00000000..6f4e4b51 --- /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; +} |
