564b59d903
This time based on grepping to also include documentation, tests and examples previously missed by the automatic tool. Change-Id: Ied1703f4bcc470fbc275f759ed5b7c588a5c4e9f Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
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
|