cmake/Source/QtDialog/Compilers.h

23 lines
278 B
C
Raw Normal View History

2021-09-14 00:13:48 +02:00
#pragma once
2018-01-26 17:06:56 +01:00
#include "cmConfigure.h" // IWYU pragma: keep
2016-10-30 18:24:19 +01: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
{
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)
{
this->setupUi(this);
}
};