mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
14 lines
188 B
C++
14 lines
188 B
C++
|
#include "tabbarform.h"
|
||
|
|
||
|
TabBarForm::TabBarForm(QWidget *parent) :
|
||
|
QWidget(parent),
|
||
|
ui(new Ui::TabBarForm)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
TabBarForm::~TabBarForm()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|