summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer/CommLayerClientDBus.cpp
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-07-07 16:17:24 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-07-07 16:17:24 +0200
commit3ca0d6c07b45fd0aca092bd6d9272b2f0dda6fe1 (patch)
tree04958ecebb0c34d95335c10d99e61b2a2a9f8bfd /lib/CommLayer/CommLayerClientDBus.cpp
parent5b7b33d851002f67b9d32e0702c7da0d82fbbb58 (diff)
downloadabrt-3ca0d6c07b45fd0aca092bd6d9272b2f0dda6fe1.tar.gz
abrt-3ca0d6c07b45fd0aca092bd6d9272b2f0dda6fe1.tar.xz
abrt-3ca0d6c07b45fd0aca092bd6d9272b2f0dda6fe1.zip
Added dbus client to commlayer
Diffstat (limited to 'lib/CommLayer/CommLayerClientDBus.cpp')
-rw-r--r--lib/CommLayer/CommLayerClientDBus.cpp13
1 files changed, 13 insertions, 0 deletions
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;
+}