| 1 | // Copyright (C) 2016 The Qt Company Ltd. |
|---|---|
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
| 3 | |
| 4 | #ifndef QBARSERIES_H |
| 5 | #define QBARSERIES_H |
| 6 | |
| 7 | #include <QtCharts/QAbstractBarSeries> |
| 8 | |
| 9 | QT_BEGIN_NAMESPACE |
| 10 | |
| 11 | class QBarSeriesPrivate; |
| 12 | |
| 13 | class Q_CHARTS_EXPORT QBarSeries : public QAbstractBarSeries |
| 14 | { |
| 15 | Q_OBJECT |
| 16 | public: |
| 17 | explicit QBarSeries(QObject *parent = nullptr); |
| 18 | ~QBarSeries(); |
| 19 | QAbstractSeries::SeriesType type() const override; |
| 20 | |
| 21 | private: |
| 22 | Q_DECLARE_PRIVATE(QBarSeries) |
| 23 | Q_DISABLE_COPY(QBarSeries) |
| 24 | }; |
| 25 | |
| 26 | QT_END_NAMESPACE |
| 27 | |
| 28 | #endif // QBARSERIES_H |
| 29 |
