Revision f4e02c46fc2b07836f6e35b92681f043f26f2361 authored by Ben Boeckel on 03 February 2020, 20:31:15 UTC, committed by Ben Boeckel on 03 February 2020, 20:31:26 UTC
1 parent 5f04dfe
Raw File
Compilers.h


#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
back to top