blob: 3c2df1ab430fade549252b9f7194d1dab092ea8a [file] [log] [blame]
Emeric Vigier2f625822012-08-06 11:09:52 -04001#ifndef __DEMO_PROPS_SERVER_H
2#define __DEMO_PROPS_SERVER_H
3
4#include <dbus-c++/dbus.h>
5#include "propsgs-glue-adaptor.h"
6
7class PropsServer
8 : public org::freedesktop::DBus::PropsGSDemo_adaptor,
9 public DBus::IntrospectableAdaptor,
10 public DBus::PropertiesAdaptor,
11 public DBus::ObjectAdaptor
12{
13public:
14
15 PropsServer(DBus::Connection &connection);
16
17 void on_set_property
18 (DBus::InterfaceAdaptor &interface, const std::string &property, const DBus::Variant &value);
19};
20
21#endif//__DEMO_PROPS_SERVER_H