qtbase/tests/manual/qtabbar/tabbarform.h
Lucie Gérard 1e0bc86dc0 Add copyright and licensing to .cpp and .h files missing them
Task-number: QTBUG-124453
Change-Id: I4487791114ce8ee6d2e788cc9a5f2ea5ec162f6b
Reviewed-by: Kai Köhne <kai.koehne@qt.io>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
2024-05-28 09:47:01 +02:00

25 lines
418 B
C++

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#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