Files
GUI/src/forms/TabFormWidget.h
Krad fc3fab4909 Rename tabformwidget to TabFormWidget.
Fix layout add bug.
2022-07-13 10:13:07 +08:00

23 lines
379 B
C++

#ifndef TABFORMWIDGET_H
#define TABFORMWIDGET_H
#include <QWidget>
namespace Ui {
class TabFormWidget;
}
class QHBoxLayout;
class TabFormWidget : public QWidget
{
Q_OBJECT
public:
explicit TabFormWidget(QWidget *parent = nullptr);
~TabFormWidget();
protected:
Ui::TabFormWidget *ui;
void addVerticalLine(QHBoxLayout *layout);
};
#endif // TABFORMWIDGET_H