summaryrefslogtreecommitdiffstats
path: root/src/CLI/CommLayerClientDBus.h
blob: 9e63f58cf2b438181c46a5eb56517a08d7793107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
        }
};