From 13483daa13d1b366fa9c7222361c094d3726f03e Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 14 Sep 2009 14:57:55 +0200 Subject: move lib/CommLayer/CommLayerClientDBus.{h,cpp) -> src/CLI Signed-off-by: Denys Vlasenko --- lib/CommLayer/CommLayerClientDBus.cpp | 14 -------------- lib/CommLayer/CommLayerClientDBus.h | 17 ----------------- lib/CommLayer/Makefile.am | 1 - 3 files changed, 32 deletions(-) delete mode 100644 lib/CommLayer/CommLayerClientDBus.cpp delete mode 100644 lib/CommLayer/CommLayerClientDBus.h (limited to 'lib') diff --git a/lib/CommLayer/CommLayerClientDBus.cpp b/lib/CommLayer/CommLayerClientDBus.cpp deleted file mode 100644 index 77983463..00000000 --- a/lib/CommLayer/CommLayerClientDBus.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "CommLayerClientDBus.h" -CCommLayerClientDBus::CCommLayerClientDBus(DBus::Connection &connection, const char *path, const char *name) -: CDBusClient_proxy(connection), - DBus::ObjectProxy(connection, path, name) -{ -} -CCommLayerClientDBus::~CCommLayerClientDBus() -{ -}; - -void Crash(std::string &value) -{ - std::cout << "Another Crash?" << std::endl; -} diff --git a/lib/CommLayer/CommLayerClientDBus.h b/lib/CommLayer/CommLayerClientDBus.h deleted file mode 100644 index 9e63f58c..00000000 --- a/lib/CommLayer/CommLayerClientDBus.h +++ /dev/null @@ -1,17 +0,0 @@ -#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; - } -}; diff --git a/lib/CommLayer/Makefile.am b/lib/CommLayer/Makefile.am index 74b3aa50..be0c52bf 100644 --- a/lib/CommLayer/Makefile.am +++ b/lib/CommLayer/Makefile.am @@ -3,7 +3,6 @@ lib_LTLIBRARIES = libABRTCommLayer.la libABRTCommLayer_la_SOURCES = \ DBusClientProxy.h DBusClientProxy.cpp \ CommLayerInner.h CommLayerInner.cpp \ - CommLayerClientDBus.h CommLayerClientDBus.cpp \ Observer.h \ DBusCommon.h libABRTCommLayer_la_LIBADD = \ -- cgit