]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/display_priv.h
Consistently label the graphics part as graphics
[libs/gui.git] / source / graphics / display_priv.h
1 #ifndef MSP_GRAPHICS_DISPLAY_PRIV_H_
2 #define MSP_GRAPHICS_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