Files
qt-creator/src/plugins/helloworld/helloworldwindow.h
Marcus Tillmanns 1da8f62783 HelloWorld: Cleanup
Change-Id: I19abb60e9a6db3a99955924f52c0b920b7fbd7f6
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
2023-10-06 06:16:27 +00:00

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