summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog/Compilers.h
blob: 746266cbb0220bf7df6de82ca01b7cf60203bd7f (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" // IWYU pragma: keep

#include <QWidget>

#include <ui_Compilers.h>

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

#endif