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 | #ifndef Q3DBARSWIDGETITEM_P_H |
15 | #define Q3DBARSWIDGETITEM_P_H |
16 | #include <QtGraphsWidgets/q3dbarswidgetitem.h> |
17 | #include <private/q3dgraphswidgetitem_p.h> |
18 | |
19 | QT_BEGIN_NAMESPACE |
20 | |
21 | class Q_GRAPHSWIDGETS_EXPORT Q3DBarsWidgetItemPrivate : public Q3DGraphsWidgetItemPrivate |
22 | { |
23 | Q_DECLARE_PUBLIC(Q3DBarsWidgetItem) |
24 | Q_DISABLE_COPY_MOVE(Q3DBarsWidgetItemPrivate) |
25 | |
26 | public: |
27 | Q3DBarsWidgetItemPrivate() = default; |
28 | }; |
29 | |
30 | QT_END_NAMESPACE |
31 | |
32 | #endif // Q3DBARSWIDGETITEM_P_H |
33 |