| 1 | // Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB). |
| 2 | // Copyright (C) 2016 The Qt Company Ltd and/or its subsidiary(-ies). |
| 3 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
| 4 | |
| 5 | #ifndef QT3DRENDER_QRENDERSTATE_H |
| 6 | #define QT3DRENDER_QRENDERSTATE_H |
| 7 | |
| 8 | #include <Qt3DCore/qnode.h> |
| 9 | #include <Qt3DRender/qt3drender_global.h> |
| 10 | |
| 11 | QT_BEGIN_NAMESPACE |
| 12 | |
| 13 | namespace Qt3DRender { |
| 14 | |
| 15 | class QRenderStatePrivate; |
| 16 | |
| 17 | class Q_3DRENDERSHARED_EXPORT QRenderState : public Qt3DCore::QNode |
| 18 | { |
| 19 | Q_OBJECT |
| 20 | public: |
| 21 | ~QRenderState(); |
| 22 | |
| 23 | protected: |
| 24 | explicit QRenderState(QRenderStatePrivate &dd, Qt3DCore::QNode *parent = nullptr); |
| 25 | |
| 26 | private: |
| 27 | Q_DECLARE_PRIVATE(QRenderState) |
| 28 | }; |
| 29 | |
| 30 | } // namespace Qt3DRender |
| 31 | |
| 32 | QT_END_NAMESPACE |
| 33 | |
| 34 | #endif // QT3DRENDER_QRENDERSTATE_H |
| 35 | |