Cafu Engine
WindowCreateParams.hpp
1 /*
2 Cafu Engine, http://www.cafu.de/
3 Copyright (c) Carsten Fuchs and other contributors.
4 This project is licensed under the terms of the MIT license.
5 */
6 
7 #ifndef CAFU_GUISYS_WINDOW_CREATE_PARAMS_HPP_INCLUDED
8 #define CAFU_GUISYS_WINDOW_CREATE_PARAMS_HPP_INCLUDED
9 
10 #include "TypeSys.hpp"
11 
12 
13 namespace cf
14 {
15  namespace GuiSys
16  {
17  class GuiImplT;
18 
19 
20  /// Creation parameters for a GUI window.
22  {
23  public:
24 
25  /// Constructor.
26  /// @param Gui_ The GUI in which the window should be created.
28 
29  GuiImplT& Gui; ///< The GUI in which the window should be created.
30  };
31  }
32 }
33 
34 #endif
WindowCreateParamsT(GuiImplT &Gui_)
Constructor.
Definition: WindowCreateParams.cpp:13
GuiImplT & Gui
The GUI in which the window should be created.
Definition: WindowCreateParams.hpp:29
This class implements a Graphical User Interface (GUI).
Definition: GuiImpl.hpp:42
Creation parameters for a GUI window.
Definition: WindowCreateParams.hpp:21
Definition: TypeSys.hpp:52