ilmControl: cancel read even on thread cancellation
[profile/ivi/wayland-ivi-extension.git] / ivi-layermanagement-api / test / TestBase.h
1
2 #include "wayland-client.h"
3 #include <vector>
4
5 class TestBase
6 {
7 public:
8     TestBase();
9     virtual ~TestBase();
10
11 protected:
12     std::vector<wl_surface *> wlSurfaces;
13     wl_display*    wlDisplay;
14
15 private:
16     wl_registry*   wlRegistry;
17     wl_compositor* wlCompositor;
18 };