CMake/Source/QtDialog/Compilers.h
Daniel Pfeifer ca2233e31f IWYU: Mark cmConfigure.h with pragma: keep
Also remove `#include "cmConfigure.h"` from most source files.
2017-08-26 07:41:04 +02:00

24 lines
312 B
C++

#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