File indexing completed on 2024-12-15 04:02:36

0001 /*
0002  * SPDX-FileCopyrightText: 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved.
0003  *
0004  * This file is part of the KD Chart library.
0005  *
0006  * SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 
0009 #ifndef KCHARTTERNARYPOINTDIAGRAM_P_H
0010 #define KCHARTTERNARYPOINTDIAGRAM_P_H
0011 
0012 //
0013 //  W A R N I N G
0014 //  -------------
0015 //
0016 // This file is not part of the KD Chart API.  It exists purely as an
0017 // implementation detail.  This header file may change from version to
0018 // version without notice, or even be removed.
0019 //
0020 // We mean it.
0021 //
0022 
0023 #include "KChartTernaryPointDiagram.h"
0024 #include "KChartAbstractTernaryDiagram_p.h"
0025 #include "KChartMath_p.h"
0026 
0027 namespace KChart {
0028 
0029 /**
0030  * \internal
0031  */
0032     class Q_DECL_HIDDEN TernaryPointDiagram::Private : public AbstractTernaryDiagram::Private
0033     {
0034         friend class TernaryPointDiagram;
0035     public:
0036         Private();
0037         ~Private() override {}
0038 
0039         Private( const Private& rhs )
0040             : AbstractTernaryDiagram::Private( rhs )
0041         {
0042         }
0043 
0044     };
0045 
0046 KCHART_IMPL_DERIVED_DIAGRAM( TernaryPointDiagram, AbstractTernaryDiagram, TernaryCoordinatePlane )
0047 /*
0048 inline TernaryPointDiagram::TernaryPointDiagram( Private * p, TernaryCoordinatePlane* plane )
0049   : AbstractTernaryDiagram( p, plane ) { init(); }
0050 inline TernaryPointDiagram::Private * TernaryPointDiagram::d_func()
0051 { return static_cast<Private*>( AbstractTernaryDiagram::d_func() ); }
0052 inline const TernaryPointDiagram::Private * TernaryPointDiagram::d_func() const
0053 { return static_cast<const Private*>( AbstractTernaryDiagram::d_func() ); }
0054 */
0055 
0056 }
0057 
0058 #endif /* KCHARTTERNARYPOINTDIAGRAM_P_H */
0059