]> git.tdb.fi Git - libs/gui.git/blob - source/gbase/display_priv.h
f522812fb7b5b7729147798e4488a2a4c0225dfe
[libs/gui.git] / source / gbase / display_priv.h
1 #ifndef MSP_GBASE_DISPLAY_PRIV_H_
2 #define MSP_GBASE_DISPLAY_PRIV_H_
3
4 #include "window_priv.h"
5
6 namespace Msp {
7 namespace Graphics {
8
9 struct Display::Private
10 {
11 #ifndef WIN32
12         ::Display *display;
13 #endif
14         std::map<WindowHandle, Window *> windows;
15 };
16
17 } // namespace Graphics
18 } // namespace Msp
19
20 #endif