This commit is contained in:
Krad
2021-10-09 16:38:34 +08:00
parent 2b8c18277d
commit e56d43ae97
41 changed files with 1023 additions and 0 deletions

21
src/tabformwidget.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef TABFORMWIDGET_H
#define TABFORMWIDGET_H
#include <QWidget>
namespace Ui {
class TabFormWidget;
}
class TabFormWidget : public QWidget
{
Q_OBJECT
public:
explicit TabFormWidget(QWidget *parent = nullptr);
~TabFormWidget();
protected:
Ui::TabFormWidget *ui;
};
#endif // TABFORMWIDGET_H