1 | // Copyright (C) 2016 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | // W A R N I N G |
5 | // ------------- |
6 | // |
7 | // This file is not part of the Qt Chart API. It exists purely as an |
8 | // implementation detail. This header file may change from version to |
9 | // version without notice, or even be removed. |
10 | // |
11 | // We mean it. |
12 | |
13 | #ifndef DECLARATIVEPOLARCHART_H |
14 | #define DECLARATIVEPOLARCHART_H |
15 | |
16 | #include <QtQml/qqmlregistration.h> |
17 | #include <QtCore/QtGlobal> |
18 | #include <QtQuick/QQuickItem> |
19 | #include <private/declarativechartglobal_p.h> |
20 | #include <private/declarativechart_p.h> |
21 | |
22 | QT_BEGIN_NAMESPACE |
23 | |
24 | class Q_CHARTSQML_PRIVATE_EXPORT DeclarativePolarChart : public DeclarativeChart |
25 | { |
26 | Q_OBJECT |
27 | QML_NAMED_ELEMENT(PolarChartView) |
28 | QML_ADDED_IN_VERSION(1, 3) |
29 | QML_EXTRA_VERSION(2, 0) |
30 | public: |
31 | DeclarativePolarChart(QQuickItem *parent = 0); |
32 | ~DeclarativePolarChart(); |
33 | }; |
34 | |
35 | QT_END_NAMESPACE |
36 | |
37 | #endif // DECLARATIVEPOLARCHART_H |
38 | |