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