// // Created by Krad on 2021/12/8. // #ifndef ACCOUNTTABLEFORM_H #define ACCOUNTTABLEFORM_H #include class QVBoxLayout; class AccountTableForm : public QWidget { Q_OBJECT public: explicit AccountTableForm(QWidget* aParent = nullptr); ~AccountTableForm(); private: QVBoxLayout* mLayout; int mCurrentRow; }; #endif //GUI_ACCOUNTTABLEFORM_H