~sethj/ubuntu/wily/unity/fix-for-1445595

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef _SERVICE_GDBUS_WRAPPER_H_
#define _SERVICE_GDBUS_WRAPPER_H_

#include <UnityCore/GLibDBusServer.h>

namespace unity
{
namespace service
{

class GDBus
{
public:
  GDBus();

private:
  glib::DBusServer server_;
  int ro_property_;
  int rw_property_;
  int wo_property_;
};

}
}

#endif /* _SERVICE_GDBUS_WRAPPER_H_ */