mirror of
https://github.com/reactos/CMake.git
synced 2024-12-14 15:19:39 +00:00
24 lines
294 B
C++
24 lines
294 B
C++
|
|
|
|
#ifndef COMPILERS_HPP
|
|
#define COMPILERS_HPP
|
|
|
|
#include <cmConfigure.h>
|
|
|
|
#include <QWidget>
|
|
|
|
#include <ui_Compilers.h>
|
|
|
|
class Compilers : public QWidget, public Ui::Compilers
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Compilers(QWidget* p = CM_NULLPTR)
|
|
: QWidget(p)
|
|
{
|
|
this->setupUi(this);
|
|
}
|
|
};
|
|
|
|
#endif
|