summaryrefslogtreecommitdiff
path: root/tests/auto/qdoc/generatedoutput/testdata/includefromexampledirs/excludes/parentinclude.qdoc
blob: 04007ac1210822dbc1413682f8eb9de31a9a1c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

/*!
//! abstract-type
    \qmltype AbstractParent
    \inqmlmodule QDoc.Test
    \ingroup qmltypes
    \qmlabstract
    \brief Abstract base QML type.
//! abstract-type
*/

/*!
    //! --- Observe the indented snippet tag:
    //! children-qmlproperty
    \qmlproperty list<Child> AbstractParent::children
    \qmldefault
    \brief Children of the type.
    //! children-qmlproperty
*/

/*!
//! rear-qmlmethod
    \qmlmethod void AbstractParent::rear(Child child)
    \brief Do some abstract parenting on \a child.
//! rear-qmlmethod
*/