]> git.tdb.fi Git - libs/gui.git/blob - source/gbase/display_priv.h
1c4f6c55ba7210f1d82f858276b6bed726c61e05
[libs/gui.git] / source / gbase / display_priv.h
1 /* $Id$
2
3 This file is part of libmspgbase
4 Copyright © 2008  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GBASE_DISPLAY_PRIV_H_
9 #define MSP_GBASE_DISPLAY_PRIV_H_
10
11 #include "window_priv.h"
12
13 namespace Msp {
14 namespace Graphics {
15
16 struct Display::Private
17 {
18 #ifndef WIN32
19         ::Display *display;
20 #endif
21         std::map<WindowHandle, Window *> windows;
22 };
23
24 } // namespace Graphics
25 } // namespace Msp
26
27 #endif