cmake/Source/QtDialog/Compilers.h

24 lines
294 B
C
Raw Normal View History

#ifndef COMPILERS_HPP
#define COMPILERS_HPP
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h"
2016-10-30 18:24:19 +01:00
#include <QWidget>
2016-07-09 11:21:54 +02:00
#include <ui_Compilers.h>
class Compilers : public QWidget, public Ui::Compilers
{
Q_OBJECT
public:
2016-10-30 18:24:19 +01:00
Compilers(QWidget* p = CM_NULLPTR)
2016-07-09 11:21:54 +02:00
: QWidget(p)
{
this->setupUi(this);
}
};
#endif