1 | // Copyright (C) 2024 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 Qt 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 | |
15 | #ifndef Q3DSCATTERWIDGETITEM_P_H |
16 | #define Q3DSCATTERWIDGETITEM_P_H |
17 | |
18 | #include <QtGraphsWidgets/q3dscatterwidgetitem.h> |
19 | #include <private/q3dgraphswidgetitem_p.h> |
20 | |
21 | QT_BEGIN_NAMESPACE |
22 | |
23 | class Q_GRAPHSWIDGETS_EXPORT Q3DScatterWidgetItemPrivate : public Q3DGraphsWidgetItemPrivate |
24 | { |
25 | Q_DECLARE_PUBLIC(Q3DScatterWidgetItem) |
26 | public: |
27 | Q3DScatterWidgetItemPrivate() = default; |
28 | }; |
29 | |
30 | QT_END_NAMESPACE |
31 | |
32 | #endif // Q3DSCATTERWIDGETITEM_P_H |
33 |