180538c706
Each source file has a logical first include file. Include it in an isolated block so that tools that sort includes do not move them.
23 lines
261 B
C++
23 lines
261 B
C++
|
|
|
|
#ifndef COMPILERS_HPP
|
|
#define COMPILERS_HPP
|
|
|
|
#include <QWidget>
|
|
|
|
#include <ui_Compilers.h>
|
|
|
|
class Compilers : public QWidget, public Ui::Compilers
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Compilers(QWidget* p=NULL) :
|
|
QWidget(p)
|
|
{
|
|
this->setupUi(this);
|
|
}
|
|
};
|
|
|
|
#endif
|
|
|