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


#ifndef COMPILERS_HPP
#define COMPILERS_HPP

#include "cmConfigure.h" // IWYU pragma: keep

#include <ui_Compilers.h>

#include <QWidget>

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

#endif