summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/tests/generatedoutput/testdata/crossmodule/testtype.cpp
blob: d7557da73373f2ec39a5b074307d29e5e745974f (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "testtype.h"

/*!
    \module CrossModule
*/

/*!
    Function under a namespace that's documented elsewhere.
*/
void CrossModuleRef::documentMeToo()
{
}

/*!
    \class TestType
    \inmodule CrossModule
    \brief A class inheriting another class that lives in an external doc
           module.

    \section1 Linking

    These links go to the parent class:
    \list
      \li \l {TestQDoc::TestDerived}
      \li \l {TestQDoc::}{Test} class \l Usage.
      \li QDOCTEST_MACRO
      \li DontLinkToMe
    \endlist

    \section1 Generated Lists

    This is an annotated list of entries in a group:
    \annotatedlist testgroup

    \sa {TestQDoc::Test::}{someFunction()}
*/

/*!
    Nothing to see here.
*/
void TestType::nothing()
{
}