~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
27
28
#ifndef _SERVICE_PANEL_H_
#define _SERVICE_PANEL_H_

#include <UnityCore/GLibDBusServer.h>

namespace unity
{
namespace service
{

class Panel
{
public:
  Panel();

private:
  GVariant* OnMethodCall(std::string const& method, GVariant *parameters);

  unsigned sync_return_mode_;
  bool trigger_resync1_sent_;

  glib::DBusServer server_;
};

}
}

#endif /* _SERVICE_PANEL_H_ */