blob: a09b21dbceeb075f0df21cd01506329e1e1d0d1a [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-proxy.h"
6
7class PropsClient
8 : public org::freedesktop::DBus::PropsGSDemo_proxy,
9 public DBus::IntrospectableProxy,
10 public DBus::PropertiesProxy,
11 public DBus::ObjectProxy
12{
13public:
14
15 PropsClient(DBus::Connection &connection, const char *path, const char *name);
16
17 void MessageChanged(const std::string &message);
18
19 void DataChanged(const double &data);
20};
21
22#endif//__DEMO_PROPS_SERVER_H