~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
29
#ifndef _SERVICE_LENS_H_
#define _SERVICE_LENS_H_

#include <unity.h>
#include <UnityCore/GLibWrapper.h>

namespace unity
{
namespace service
{

class Lens
{
public:
  Lens();
  ~Lens();

private:
  void AddCategories();
  void AddFilters();

  glib::Object<UnityLens> lens_;
  glib::Object<UnityScope> scope_;
};

}
}

#endif /* _SERVICE_LENS_H_ */