mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
23 lines
307 B
C
23 lines
307 B
C
|
#ifndef TABBARFORM_H
|
||
|
#define TABBARFORM_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include "ui_tabbarform.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class TabBarForm;
|
||
|
}
|
||
|
|
||
|
class TabBarForm : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit TabBarForm(QWidget *parent = nullptr);
|
||
|
~TabBarForm();
|
||
|
|
||
|
Ui::TabBarForm *ui;
|
||
|
};
|
||
|
|
||
|
#endif // TABBARFORM_H
|