blob: e6cb07b6afad659276666d352ef260cddb79c71c (
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
32
33
34
35
36
37
38
39
40
|
// Copyright (C) 2014 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
#ifndef QT3DRENDER_QFRAMEGRAPHNODE_H
#define QT3DRENDER_QFRAMEGRAPHNODE_H
#include <Qt3DCore/qnode.h>
#include <Qt3DRender/qt3drender_global.h>
#include <QtCore/QObject>
QT_BEGIN_NAMESPACE
namespace Qt3DRender {
class QFrameGraphNodePrivate;
class Q_3DRENDERSHARED_EXPORT QFrameGraphNode : public Qt3DCore::QNode
{
Q_OBJECT
public:
explicit QFrameGraphNode(Qt3DCore::QNode *parent = nullptr);
~QFrameGraphNode();
QFrameGraphNode *parentFrameGraphNode() const;
protected:
explicit QFrameGraphNode(QFrameGraphNodePrivate &dd, Qt3DCore::QNode *parent = nullptr);
private Q_SLOTS:
void onParentChanged(QObject *);
private:
Q_DECLARE_PRIVATE(QFrameGraphNode)
};
} // namespace Qt3DRender
QT_END_NAMESPACE
#endif // QT3DRENDER_QFRAMEGRAPHNODE_H
|