summaryrefslogtreecommitdiff
path: root/Source/QtDialog/Compilers.h
blob: 3f7b83411a7dec2de22be25fba1047600f447c41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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