summaryrefslogtreecommitdiff
path: root/examples/properties/propsgs-server.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/properties/propsgs-server.h')
-rw-r--r--examples/properties/propsgs-server.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/properties/propsgs-server.h b/examples/properties/propsgs-server.h
new file mode 100644
index 0000000..a3169d6
--- /dev/null
+++ b/examples/properties/propsgs-server.h
@@ -0,0 +1,21 @@
+#ifndef __DEMO_PROPS_SERVER_H
+#define __DEMO_PROPS_SERVER_H
+
+#include <dbus-c++/dbus.h>
+#include "propsgs-glue-adaptor.h"
+
+class PropsServer
+: public org::freedesktop::DBus::PropsGSDemo_adaptor,
+ public DBus::IntrospectableAdaptor,
+ public DBus::PropertiesAdaptor,
+ public DBus::ObjectAdaptor
+{
+public:
+
+ PropsServer(DBus::Connection &connection);
+
+ void on_set_property
+ (DBus::InterfaceAdaptor &interface, const std::string &property, const DBus::Variant &value);
+};
+
+#endif//__DEMO_PROPS_SERVER_H