summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/src/qdoc/proxynode.h
blob: cced34892816c8d157522532faa8800d58863446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef PROXYNODE_H
#define PROXYNODE_H

#include "aggregate.h"

#include <QtCore/qglobal.h>

QT_BEGIN_NAMESPACE

class ProxyNode : public Aggregate
{
public:
    ProxyNode(Aggregate *parent, const QString &name);
    [[nodiscard]] bool docMustBeGenerated() const override { return true; }
    [[nodiscard]] bool isRelatableType() const override { return true; }
};

QT_END_NAMESPACE

#endif // PROXYNODE_H