mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
15 lines
239 B
C++
Executable File
15 lines
239 B
C++
Executable File
#include "qqttabwidgetb.h"
|
|
#include "ui_qqttabwidgetb.h"
|
|
|
|
QQTTabWidgetB::QQTTabWidgetB(QWidget *parent) :
|
|
QTabWidget(parent),
|
|
ui(new Ui::QQTTabWidgetB)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
QQTTabWidgetB::~QQTTabWidgetB()
|
|
{
|
|
delete ui;
|
|
}
|