summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/cmakedocumentation/src/car.cpp
blob: 78823d7e31997ad45fd2e139ca17663407369b10 (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
46
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only

#include "car.h"

/*!
    \module TestCar
    \since 6.6.6
    \qtvariable testcar
    \qtcmakepackage TestCar
*/

/*!
    \module TestCarPrivate
    \since 6.6.6
    \qtvariable testcar-private
    \qtcmakepackage TestCar
    \qtcmaketargetitem TestCarPrivate
*/

/*!
    \class Car
    \inmodule TestCar
    \brief Represents a model of a car.
*/

/*!
    \class Engine
    \inmodule TestCarPrivate
    \brief Represents a model of an engine.
*/

/*!
    \fn void Car::drive()
    \brief Drives the car.
*/

/*!
    \fn void Engine::start()
    \brief Starts the engine.
*/

/*!
    \fn void Engine::stop()
    \brief Stops the engine.
*/