| 1 | // Copyright (C) 2020 Klaralvdalens Datakonsult AB (KDAB). |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
| 3 | |
| 4 | #include "qabstractfrontendnodemanager_p.h" |
| 5 | |
| 6 | QT_BEGIN_NAMESPACE |
| 7 | |
| 8 | namespace Qt3DCore { |
| 9 | |
| 10 | QAbstractFrontEndNodeManager::QAbstractFrontEndNodeManager() = default; |
| 11 | |
| 12 | QAbstractFrontEndNodeManager::~QAbstractFrontEndNodeManager() = default; |
| 13 | |
| 14 | /* |
| 15 | \fn QNode *Qt3DCore::QAbstractFrontEndNodeManager::lookupNode(QNodeId id) const |
| 16 | |
| 17 | Returns the node instance matching the id, or nullptr if not found. |
| 18 | |
| 19 | */ |
| 20 | |
| 21 | /* |
| 22 | \fn QList<QNode *> Qt3DCore::QAbstractFrontEndNodeManager::lookupNodes(const QList<QNodeId> &ids) const |
| 23 | |
| 24 | Returns the vector of node instance matching the ids. |
| 25 | |
| 26 | */ |
| 27 | |
| 28 | |
| 29 | } // Qt3DCore |
| 30 | |
| 31 | QT_END_NAMESPACE |
| 32 | |