Files
GUI/src/generalform.h

21 lines
331 B
C
Raw Normal View History

2021-12-07 14:14:20 +08:00
#ifndef GENERALFORM_H
#define GENERALFORM_H
#include <QWidget>
class QPushButton;
class QVBoxLayout;
class SelectDialog;
2021-12-21 16:46:47 +08:00
2021-12-07 14:14:20 +08:00
class GeneralForm : public QWidget
{
Q_OBJECT
public:
explicit GeneralForm(QWidget* parent = nullptr);
private:
QVBoxLayout* layout = nullptr;
SelectDialog* dialog = nullptr;
};
#endif // GENERALFORM_H