21 lines
314 B
C++
21 lines
314 B
C++
#ifndef GENERALFORM_H
|
|
#define GENERALFORM_H
|
|
|
|
#include <QWidget>
|
|
|
|
class QVBoxLayout;
|
|
class SelectDialog;
|
|
|
|
class GeneralForm : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit GeneralForm(QWidget* aParent = nullptr);
|
|
|
|
private:
|
|
QVBoxLayout* mLayout;
|
|
SelectDialog* mSelectDialog;
|
|
};
|
|
|
|
#endif // GENERALFORM_H
|