diff options
| author | dnovotny <danny@rawhide.localdomain> | 2009-09-14 09:40:28 -0400 |
|---|---|---|
| committer | dnovotny <danny@rawhide.localdomain> | 2009-09-14 09:40:28 -0400 |
| commit | 648a9cd08da32494227c4d36a4401fd877d6e03a (patch) | |
| tree | 40e6bd7ef22051ada9437ef22da9d2436a3fd358 /src/CLI/CommLayerClientDBus.h | |
| parent | 814506ae62986c3c3b667afdae7a33fe6b9e690f (diff) | |
| parent | ac72b4b35e15c0823dc8c1f68684349a5e34c72a (diff) | |
| download | abrt-648a9cd08da32494227c4d36a4401fd877d6e03a.tar.gz abrt-648a9cd08da32494227c4d36a4401fd877d6e03a.tar.xz abrt-648a9cd08da32494227c4d36a4401fd877d6e03a.zip | |
Merge branch 'master' of git://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src/CLI/CommLayerClientDBus.h')
| -rw-r--r-- | src/CLI/CommLayerClientDBus.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/CLI/CommLayerClientDBus.h b/src/CLI/CommLayerClientDBus.h new file mode 100644 index 0000000..9e63f58 --- /dev/null +++ b/src/CLI/CommLayerClientDBus.h @@ -0,0 +1,17 @@ +#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; + } +}; |
