summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/usingdirective/src/space.cpp
blob: d84156da00a4be75c1e4d5c8d28bdaee5a0e6d8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "space.h"

/*!
    \namespace Space
    \inmodule UsingDirective
    \brief A namespace...in space.
*/

using namespace Alias;
using namespace Space;

/*!
    \relates Space
    A \a space function.
*/
void spaceFun(spacename space)
{
}