summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/tests/generatedoutput/testdata/crossmodule/testtype.h
blob: b6b0d446f497b763095b9dd199ccc5fa2105771b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#pragma once

#include "../testcpp/testcpp.h"

namespace CrossModuleRef {
    void documentMeToo();
}

class TestType : public TestQDoc::TestDerived
{
public:
    TestType() {}
    void nothing() {}
};