diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-14 14:57:55 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-14 14:57:55 +0200 |
| commit | 13483daa13d1b366fa9c7222361c094d3726f03e (patch) | |
| tree | 0ca9c507072af60fd782f2e2ef2969a06519a12b /src/CLI/CommLayerClientDBus.cpp | |
| parent | cc83804e6fb6b9b6534ea58003cd73d31968ca27 (diff) | |
| download | abrt-13483daa13d1b366fa9c7222361c094d3726f03e.tar.gz abrt-13483daa13d1b366fa9c7222361c094d3726f03e.tar.xz abrt-13483daa13d1b366fa9c7222361c094d3726f03e.zip | |
move lib/CommLayer/CommLayerClientDBus.{h,cpp) -> src/CLI
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/CLI/CommLayerClientDBus.cpp')
| -rw-r--r-- | src/CLI/CommLayerClientDBus.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/CLI/CommLayerClientDBus.cpp b/src/CLI/CommLayerClientDBus.cpp new file mode 100644 index 00000000..77983463 --- /dev/null +++ b/src/CLI/CommLayerClientDBus.cpp @@ -0,0 +1,14 @@ +#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; +} |
