summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/tests/generatedoutput/testdata/includefromexampledirs/excludes/parentinclude.qdoc
blob: 4409fba8f8c9f25bab05dc081fac8229d52004d3 (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

/*!
//! 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
*/