aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/code/src_qml_qqmlparserstatus.cpp
blob: 980b81a056589948f4c9d32e0318abe0b726145a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QtCore/qobject.h>
#include <QtQml/qqmlparserstatus.h>

//! [0]
class MyObject : public QObject, public QQmlParserStatus
{
    Q_OBJECT
    Q_INTERFACES(QQmlParserStatus)

public:
    MyObject(QObject *parent = nullptr);
    // ...
    void classBegin() override;
    void componentComplete() override;
};
//! [0]