CMake/Source/QtDialog/Compilers.h
Clinton Stimpson 64b377d707 ENH:
For bug #7191.
Improvements to the dialog that sets up the first configure.
Fixing the large size of it by breaking it up into a wizard.
Also incorporated suggestions from bug report.
2008-12-16 15:00:17 -05:00

22 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