21 lines
353 B
C++
21 lines
353 B
C++
//
|
|
// Created by Krad on 2021/10/8.
|
|
//
|
|
|
|
#ifndef GUI_SELECTFORMWIDGET_H
|
|
#define GUI_SELECTFORMWIDGET_H
|
|
|
|
#include "tabformwidget.h"
|
|
class SelectFormWidget: public TabFormWidget {
|
|
Q_OBJECT
|
|
public:
|
|
explicit SelectFormWidget(QWidget *parent = nullptr);
|
|
~SelectFormWidget();
|
|
|
|
private:
|
|
int currentRow = -1;
|
|
};
|
|
|
|
|
|
#endif //GUI_SELECTFORMWIDGET_H
|