summaryrefslogtreecommitdiffstats
path: root/lib/DBus/DbusClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/DBus/DbusClient.h')
-rw-r--r--lib/DBus/DbusClient.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/DBus/DbusClient.h b/lib/DBus/DbusClient.h
new file mode 100644
index 00000000..e278c50d
--- /dev/null
+++ b/lib/DBus/DbusClient.h
@@ -0,0 +1,15 @@
+#include <dbus-c++/dbus.h>
+#include "DBusClientProxy.h"
+
+class CDBusClient
+: public org::freedesktop::DBus::CDBusClient_proxy,
+ public DBus::IntrospectableProxy,
+ public DBus::ObjectProxy
+{
+public:
+
+ CDBusClient(DBus::Connection &connection, const char *path, const char *name);
+ ~CDBusClient();
+ void Crash(const DBus::Variant &value);
+};
+