Radium Engine  1.5.20
Loading...
Searching...
No Matches
SimpleWindowFactory.hpp
1#pragma once
2#include <Gui/BaseApplication.hpp>
3#include <Gui/RaGui.hpp>
4#include <Gui/RadiumWindow/SimpleWindow.hpp>
5
6namespace Ra {
7namespace Gui {
8
14class SimpleWindowFactory : public Ra::Gui::BaseApplication::WindowFactory
15{
16 public:
17 using Ra::Gui::BaseApplication::WindowFactory::WindowFactory;
18 inline Ra::Gui::MainWindowInterface* createMainWindow() const override {
19 return new SimpleWindow();
20 }
21};
22
23} // namespace Gui
24} // namespace Ra
hepler function to manage enum as underlying types in VariableSet
Definition Cage.cpp:3