Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
examples.cpp
Go to the documentation of this file.
1// Copyright (C) 2024 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
4//! [qt_wrap_cpp_4]
5// myapp.cpp
6#include "myapp.h"
7#include <QObject>
8
9class MyApp : public QObject {
11public:
12 MyApp() = default;
13};
14
15#include "myapp.moc"
16//! [qt_wrap_cpp_4]
[qt_wrap_cpp_4]
Definition examples.cpp:9