1 | // Copyright (C) 2016 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | // |
5 | // W A R N I N G |
6 | // ------------- |
7 | // |
8 | // This file is not part of the QtDataVisualization API. It exists purely as an |
9 | // implementation detail. This header file may change from version to |
10 | // version without notice, or even be removed. |
11 | // |
12 | // We mean it. |
13 | |
14 | #ifndef Q3DLIGHT_P_H |
15 | #define Q3DLIGHT_P_H |
16 | |
17 | #include "datavisualizationglobal_p.h" |
18 | #include "q3dlight.h" |
19 | |
20 | QT_BEGIN_NAMESPACE |
21 | |
22 | class Q3DScene; |
23 | class Q3DLight; |
24 | |
25 | class Q3DLightPrivate |
26 | { |
27 | public: |
28 | Q3DLightPrivate(Q3DLight *q); |
29 | ~Q3DLightPrivate(); |
30 | |
31 | void sync(Q3DLight &other); |
32 | |
33 | public: |
34 | Q3DLight *q_ptr; |
35 | bool m_automaticLight; |
36 | }; |
37 | |
38 | QT_END_NAMESPACE |
39 | |
40 | #endif |
41 | |
42 | |
43 | |
44 | |
45 | |
46 | |