You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
307 B
C
21 lines
307 B
C
|
2 years ago
|
#pragma once
|
||
|
|
|
||
|
|
#include <QWidget>
|
||
|
|
#include "ui_QModuleChoice.h"
|
||
|
|
|
||
|
|
QT_BEGIN_NAMESPACE
|
||
|
|
namespace Ui { class QModuleChoiceClass; };
|
||
|
|
QT_END_NAMESPACE
|
||
|
|
|
||
|
|
class QModuleChoice : public QWidget
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
QModuleChoice(QWidget *parent = nullptr);
|
||
|
|
~QModuleChoice();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::QModuleChoiceClass *ui;
|
||
|
|
};
|