summaryrefslogtreecommitdiff
path: root/Source/QtDialog/Compilers.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/QtDialog/Compilers.h')
-rw-r--r--Source/QtDialog/Compilers.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Source/QtDialog/Compilers.h b/Source/QtDialog/Compilers.h
new file mode 100644
index 000000000..e9c90a504
--- /dev/null
+++ b/Source/QtDialog/Compilers.h
@@ -0,0 +1,21 @@
+
+
+#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
+