diff options
Diffstat (limited to 'Source/QtDialog/Compilers.h')
-rw-r--r-- | Source/QtDialog/Compilers.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Source/QtDialog/Compilers.h b/Source/QtDialog/Compilers.h new file mode 100644 index 0000000..96770e3 --- /dev/null +++ b/Source/QtDialog/Compilers.h @@ -0,0 +1,25 @@ + + +#ifndef COMPILERS_HPP +#define COMPILERS_HPP + +#include "cmConfigure.h" // IWYU pragma: keep + +#include <QWidget> + +#include <ui_Compilers.h> + +class Compilers + : public QWidget + , public Ui::Compilers +{ + Q_OBJECT +public: + Compilers(QWidget* p = nullptr) + : QWidget(p) + { + this->setupUi(this); + } +}; + +#endif |