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

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