Files
GUI/src/forms/TabFormWidget.h

23 lines
379 B
C
Raw Normal View History

2021-10-09 16:38:34 +08:00
#ifndef TABFORMWIDGET_H
#define TABFORMWIDGET_H
#include <QWidget>
namespace Ui {
class TabFormWidget;
}
class QHBoxLayout;
2021-10-09 16:38:34 +08:00
class TabFormWidget : public QWidget
{
Q_OBJECT
public:
explicit TabFormWidget(QWidget *parent = nullptr);
~TabFormWidget();
protected:
Ui::TabFormWidget *ui;
void addVerticalLine(QHBoxLayout *layout);
2021-10-09 16:38:34 +08:00
};
#endif // TABFORMWIDGET_H