mirror of
https://github.com/reactos/CMake.git
synced 2024-11-27 21:41:03 +00:00
ed98209ddc
Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0.
26 lines
317 B
C++
26 lines
317 B
C++
|
|
|
|
#ifndef COMPILERS_HPP
|
|
#define COMPILERS_HPP
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <ui_Compilers.h>
|
|
|
|
#include <QWidget>
|
|
|
|
class Compilers
|
|
: public QWidget
|
|
, public Ui::Compilers
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Compilers(QWidget* p = nullptr)
|
|
: QWidget(p)
|
|
{
|
|
this->setupUi(this);
|
|
}
|
|
};
|
|
|
|
#endif
|