hivemind 1.0.0
Loading...
Searching...
No Matches
launcher.h
Go to the documentation of this file.
1#pragma once
2
3#include <QVBoxLayout>
4#include <QWidget>
5
6namespace Gui
7{
8 /// \brief The launcher widget used to launch scenarios.
9 ///
10 /// Contains the graphical functionality to launch scenarios.
11 class Launcher : public QWidget
12 {
13 public:
14 /// \brief Constructs the launcher widget.
15 /// \param parent The parent of the launcher widget.
16 Launcher(QWidget* parent = nullptr);
17
18 /// \brief Destructs the launcher widget.
19 ~Launcher();
20
21 private:
22 /// \brief The layout of the launcher widget.
23 QVBoxLayout* m_Layout;
24 };
25} // namespace Gui
The launcher widget used to launch scenarios.
Definition: launcher.h:12
~Launcher()
Destructs the launcher widget.
Definition: launcher.cpp:17
QVBoxLayout * m_Layout
The layout of the launcher widget.
Definition: launcher.h:23
Definition: action.h:6