| 1 | // Copyright (C) 2020 The Qt Company Ltd. |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 |
| 3 | |
| 4 | #ifndef PROXYNODE_H |
| 5 | #define PROXYNODE_H |
| 6 | |
| 7 | #include "aggregate.h" |
| 8 | |
| 9 | #include <QtCore/qglobal.h> |
| 10 | |
| 11 | QT_BEGIN_NAMESPACE |
| 12 | |
| 13 | class ProxyNode : public Aggregate |
| 14 | { |
| 15 | public: |
| 16 | ProxyNode(Aggregate *parent, const QString &name); |
| 17 | [[nodiscard]] bool docMustBeGenerated() const override { return true; } |
| 18 | [[nodiscard]] bool isRelatableType() const override { return true; } |
| 19 | }; |
| 20 | |
| 21 | QT_END_NAMESPACE |
| 22 | |
| 23 | #endif // PROXYNODE_H |
| 24 | |