File indexing completed on 2025-01-26 03:34:21

0001 /*
0002     File                 : XYInterpolationCurvePrivate.h
0003     Project              : LabPlot
0004     Description          : Private members of XYInterpolationCurve
0005     --------------------------------------------------------------------
0006     SPDX-FileCopyrightText: 2016 Stefan Gerlach <stefan.gerlach@uni.kn>
0007     SPDX-FileCopyrightText: 2017 Alexander Semke <alexander.semke@web.de>
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #ifndef XYINTERPOLATIONCURVEPRIVATE_H
0012 #define XYINTERPOLATIONCURVEPRIVATE_H
0013 
0014 #include "backend/worksheet/plots/cartesian/XYAnalysisCurvePrivate.h"
0015 #include "backend/worksheet/plots/cartesian/XYInterpolationCurve.h"
0016 
0017 class XYInterpolationCurve;
0018 class Column;
0019 
0020 class XYInterpolationCurvePrivate : public XYAnalysisCurvePrivate {
0021 public:
0022     explicit XYInterpolationCurvePrivate(XYInterpolationCurve*);
0023     ~XYInterpolationCurvePrivate() override;
0024 
0025     virtual bool recalculateSpecific(const AbstractColumn* tmpXDataColumn, const AbstractColumn* tmpYDataColumn) override;
0026     virtual void resetResults() override;
0027 
0028     XYInterpolationCurve::InterpolationData interpolationData;
0029     XYInterpolationCurve::InterpolationResult interpolationResult;
0030 
0031     XYInterpolationCurve* const q;
0032 };
0033 
0034 #endif