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