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 QHORIZONTALBARSERIES_P_H
14#define QHORIZONTALBARSERIES_P_H
15
16#include <private/qabstractbarseries_p.h>
17#include <private/abstractdomain_p.h>
18#include <QtCharts/private/qchartglobal_p.h>
19
20QT_BEGIN_NAMESPACE
21
22class Q_CHARTS_PRIVATE_EXPORT QHorizontalBarSeriesPrivate: public QAbstractBarSeriesPrivate
23{
24public:
25 QHorizontalBarSeriesPrivate(QHorizontalBarSeries *q);
26 void initializeGraphics(QGraphicsItem* parent) override;
27 void initializeDomain() override;
28private:
29 Q_DECLARE_PUBLIC(QHorizontalBarSeries)
30};
31
32QT_END_NAMESPACE
33
34#endif // QHORIZONTALBARSERIES_P_H
35

source code of qtcharts/src/charts/barchart/horizontal/bar/qhorizontalbarseries_p.h