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


#ifndef COMPILERS_HPP
#define COMPILERS_HPP

#include <cmConfigure.h>

#include <QWidget>

#include <ui_Compilers.h>

class Compilers : public QWidget, public Ui::Compilers
{
  Q_OBJECT
public:
  Compilers(QWidget* p = CM_NULLPTR)
    : QWidget(p)
  {
    this->setupUi(this);
  }
};

#endif