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 | #ifndef QT3DRENDER_QPICKINGPROXY_H |
5 | #define QT3DRENDER_QPICKINGPROXY_H |
6 | |
7 | #include <Qt3DCore/qboundingvolume.h> |
8 | #include <Qt3DCore/qgeometry.h> |
9 | #include <Qt3DCore/qgeometryview.h> |
10 | #include <Qt3DRender/qt3drender_global.h> |
11 | |
12 | QT_BEGIN_NAMESPACE |
13 | |
14 | namespace Qt3DRender { |
15 | |
16 | class QPickingProxyPrivate; |
17 | |
18 | class Q_3DRENDERSHARED_EXPORT QPickingProxy : public Qt3DCore::QBoundingVolume |
19 | { |
20 | Q_OBJECT |
21 | public: |
22 | explicit QPickingProxy(Qt3DCore::QNode *parent = nullptr); |
23 | ~QPickingProxy(); |
24 | |
25 | protected: |
26 | explicit QPickingProxy(QPickingProxyPrivate &dd, Qt3DCore::QNode *parent = nullptr); |
27 | |
28 | private: |
29 | Q_DECLARE_PRIVATE(QPickingProxy) |
30 | }; |
31 | |
32 | } // namespace Qt3DRender |
33 | |
34 | QT_END_NAMESPACE |
35 | |
36 | #endif // QT3DRENDER_QPICKINGPROXY_H |
37 | |