CMake/Source/QtDialog/Compilers.h
Brad King 180538c706 Source: Stabilize include order
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.
2016-04-29 13:58:31 -04:00

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