summaryrefslogtreecommitdiff
path: root/Source/QtDialog/Compilers.h
blob: ee898861bbc05607c03fe8619186a6003a804b19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22


#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