X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgraphics%2Fwindow_private.h;fp=source%2Fgraphics%2Fwindow_private.h;h=2257b1cfbbed2939bd3b2c8a6bcb50e5d3c4bcf1;hb=1aca77b93853ee127ac3bbf6886f7f04920542ef;hp=0000000000000000000000000000000000000000;hpb=4464dd5d973c47f6d7a7c352a90bd88cdb717cd2;p=libs%2Fgui.git diff --git a/source/graphics/window_private.h b/source/graphics/window_private.h new file mode 100644 index 0000000..2257b1c --- /dev/null +++ b/source/graphics/window_private.h @@ -0,0 +1,22 @@ +#ifndef MSP_GRAPHICS_WINDOW_PRIVATE_H_ +#define MSP_GRAPHICS_WINDOW_PRIVATE_H_ + +#include "window.h" +#include "window_platform.h" + +namespace Msp { +namespace Graphics { + +struct Window::Private: PlatformWindowPrivate +{ + WindowHandle window; +}; + +struct Window::Event: PlatformEvent +{ +}; + +} // namespace Graphics +} // namespace Msp + +#endif