Equalizer  2.1.0
Parallel Rendering Framework
eq/qt/types.h
1 
2 /* Copyright (c) 2014-2016, Daniel Nachbaur <danielnachbaur@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or modify it under
5  * the terms of the GNU Lesser General Public License version 2.1 as published
6  * by the Free Software Foundation.
7  *
8  * This library is distributed in the hope that it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
11  * details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this library; if not, write to the Free Software Foundation, Inc.,
15  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16  */
17 
18 #ifndef EQ_QT_TYPES_H
19 #define EQ_QT_TYPES_H
20 
21 #include <eq/types.h>
22 
23 class QEvent;
24 class QExposeEvent;
25 class QHideEvent;
26 class QKeyEvent;
27 class QMouseEvent;
28 class QObject;
29 class QOpenGLContext;
30 class QResizeEvent;
31 class QThread;
32 class QWheelEvent;
33 
34 namespace eq
35 {
40 namespace qt
41 {
42 class Event;
43 class EventHandler;
44 class Pipe;
45 class Window;
46 class WindowFactory;
47 class WindowIF;
48 
49 namespace detail
50 {
51 class Window;
52 }
53 }
54 }
55 
56 #endif // EQ_QT_TYPES_H
The Equalizer client library.
Definition: eq/agl/types.h:23