Files
GUI/src/forms/settings/GeneralForm.h

19 lines
261 B
C
Raw Normal View History

2022-06-14 18:04:44 +08:00
#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