1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/qqttabwidgetb.h
tianduanrui 3f857669fc init
2016-12-29 16:49:18 +08:00

25 lines
369 B
C++
Executable File

#ifndef QQTTABWIDGETB_H
#define QQTTABWIDGETB_H
#include <QTabWidget>
namespace Ui {
class QQTTabWidgetB;
}
class QQTTabWidgetB : public QTabWidget
{
Q_OBJECT
public:
explicit QQTTabWidgetB(QWidget *parent = 0);
~QQTTabWidgetB();
QTabBar* tabBar() { return QTabWidget::tabBar(); }
private:
Ui::QQTTabWidgetB *ui;
};
#endif // QQTTABWIDGETB_H