summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/cmake-macros/examples.cpp
blob: b17fcd8e77aaeee231457bf4c03769bc3b95efc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [qt_wrap_cpp_4]
// myapp.cpp
#include "myapp.h"
#include <QObject>

class MyApp : public QObject {
    Q_OBJECT
public:
    MyApp() = default;
};

#include "myapp.moc"
//! [qt_wrap_cpp_4]