summaryrefslogtreecommitdiffstats
path: root/src/CLI/CommLayerClientDBus.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-17 00:54:45 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-17 00:54:45 +0200
commit965e2c893488164c6b36ec1942e762bb42e7fb61 (patch)
tree2875a673449bd10e5845f4aacda349767135ba20 /src/CLI/CommLayerClientDBus.h
parent92e1cccad55ec52e4fb0cfff538cae836c1e1941 (diff)
downloadabrt-965e2c893488164c6b36ec1942e762bb42e7fb61.tar.gz
abrt-965e2c893488164c6b36ec1942e762bb42e7fb61.tar.xz
abrt-965e2c893488164c6b36ec1942e762bb42e7fb61.zip
remove C++ dbus glue in src/CLI; fix a bug in --report
Several kb of code removed. The nly remaining use of C++ glue is desktop applet. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/CLI/CommLayerClientDBus.h')
-rw-r--r--src/CLI/CommLayerClientDBus.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/CLI/CommLayerClientDBus.h b/src/CLI/CommLayerClientDBus.h
deleted file mode 100644
index 9e63f58..0000000
--- a/src/CLI/CommLayerClientDBus.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <DBusCommon.h>
-#include <DBusClientProxy.h>
-#include <iostream>
-
-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;
- }
-};