| 1 | // Copyright (C) 2019 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 | #ifndef QT3DRENDER_QNOPICKING_H |
| 5 | #define QT3DRENDER_QNOPICKING_H |
| 6 | |
| 7 | #include <Qt3DRender/qframegraphnode.h> |
| 8 | |
| 9 | QT_BEGIN_NAMESPACE |
| 10 | |
| 11 | namespace Qt3DRender { |
| 12 | |
| 13 | class Q_3DRENDERSHARED_EXPORT QNoPicking : public QFrameGraphNode |
| 14 | { |
| 15 | Q_OBJECT |
| 16 | public: |
| 17 | explicit QNoPicking(Qt3DCore::QNode *parent = nullptr); |
| 18 | ~QNoPicking(); |
| 19 | }; |
| 20 | |
| 21 | } // Qt3DRender |
| 22 | |
| 23 | QT_END_NAMESPACE |
| 24 | |
| 25 | #endif // QT3DRENDER_QNOPICKING_H |
| 26 | |