[cosmetic] cleanup copyright headers
[vuplus_xbmc] / xbmc / windowing / wayland / Wayland12EventQueueStrategy.h
1 #pragma once
2
3 /*
4  *      Copyright (C) 2011-2013 Team XBMC
5  *      http://xbmc.org
6  *
7  *  This Program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2, or (at your option)
10  *  any later version.
11  *
12  *  This Program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with XBMC; see the file COPYING.  If not, see
19  *  <http://www.gnu.org/licenses/>.
20  *
21  */
22 #include <queue>
23
24 #include <boost/noncopyable.hpp>
25
26 #include "EventQueueStrategy.h"
27 #include "PollThread.h"
28
29 class IDllWaylandClient;
30
31 struct wl_display;
32
33 namespace xbmc
34 {
35 namespace wayland
36 {
37 namespace version_12
38 {
39 class EventQueueStrategy :
40   public events::IEventQueueStrategy
41 {
42 public:
43
44   EventQueueStrategy(IDllWaylandClient &clientLibrary,
45                      struct wl_display *display);
46
47   void PushAction(const Action &action);
48   void DispatchEventsFromMain();
49
50 private:
51
52   IDllWaylandClient &m_clientLibrary;
53   struct wl_display *m_display;
54
55   events::PollThread m_thread;
56 };
57 }
58 }
59 }