2008-12-16 23:00:17 +03:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef COMPILERS_HPP
|
|
|
|
#define COMPILERS_HPP
|
|
|
|
|
|
|
|
#include <QWidget>
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2008-12-16 23:00:17 +03:00
|
|
|
#include <ui_Compilers.h>
|
|
|
|
|
|
|
|
class Compilers : public QWidget, public Ui::Compilers
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
Compilers(QWidget* p = NULL)
|
|
|
|
: QWidget(p)
|
2008-12-16 23:00:17 +03:00
|
|
|
{
|
|
|
|
this->setupUi(this);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|