forked from qt-creator/qt-creator
Change-Id: I19abb60e9a6db3a99955924f52c0b920b7fbd7f6 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
18 lines
367 B
C++
18 lines
367 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
namespace HelloWorld::Internal {
|
|
|
|
class HelloWorldWindow : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit HelloWorldWindow(QWidget *parent = nullptr);
|
|
};
|
|
|
|
} // namespace HelloWorld::Internal
|