summaryrefslogtreecommitdiffstats
path: root/src/core/qabstractfrontendnodemanager.cpp
blob: e69a0bd4dde215bfe9e4476970564caaf0a9349a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (C) 2020 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include "qabstractfrontendnodemanager_p.h"

QT_BEGIN_NAMESPACE

namespace Qt3DCore {

QAbstractFrontEndNodeManager::QAbstractFrontEndNodeManager() = default;

QAbstractFrontEndNodeManager::~QAbstractFrontEndNodeManager() = default;

/*
\fn QNode *Qt3DCore::QAbstractFrontEndNodeManager::lookupNode(QNodeId id) const

Returns the node instance matching the id, or nullptr if not found.

*/

/*
\fn QList<QNode *> Qt3DCore::QAbstractFrontEndNodeManager::lookupNodes(const QList<QNodeId> &ids) const

Returns the vector of node instance matching the ids.

*/


} // Qt3DCore

QT_END_NAMESPACE