2009-02-07 16:14:30 +02:00
|
|
|
|
|
|
|
|
2021-09-14 00:13:48 +02:00
|
|
|
#pragma once
|
2009-02-07 16:14:30 +02:00
|
|
|
|
2018-01-26 17:06:56 +01:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-10-30 18:24:19 +01:00
|
|
|
|
2009-02-07 16:14:30 +02:00
|
|
|
#include <ui_Compilers.h>
|
|
|
|
|
2020-02-01 23:06:01 +01:00
|
|
|
#include <QWidget>
|
|
|
|
|
2018-08-09 18:06:22 +02:00
|
|
|
class Compilers
|
|
|
|
: public QWidget
|
|
|
|
, public Ui::Compilers
|
2009-02-07 16:14:30 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2018-01-26 17:06:56 +01:00
|
|
|
Compilers(QWidget* p = nullptr)
|
2016-07-09 11:21:54 +02:00
|
|
|
: QWidget(p)
|
2009-02-07 16:14:30 +02:00
|
|
|
{
|
|
|
|
this->setupUi(this);
|
|
|
|
}
|
|
|
|
};
|