File indexing completed on 2025-01-26 03:34:18
0001 /* 0002 File : XYDifferentiationCurvePrivate.h 0003 Project : LabPlot 0004 Description : Private members of XYDifferentiationCurve 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 XYDIFFERENTIATIONCURVEPRIVATE_H 0012 #define XYDIFFERENTIATIONCURVEPRIVATE_H 0013 0014 #include "backend/worksheet/plots/cartesian/XYAnalysisCurvePrivate.h" 0015 #include "backend/worksheet/plots/cartesian/XYDifferentiationCurve.h" 0016 0017 class XYDifferentiationCurve; 0018 class Column; 0019 0020 class XYDifferentiationCurvePrivate : public XYAnalysisCurvePrivate { 0021 public: 0022 explicit XYDifferentiationCurvePrivate(XYDifferentiationCurve*); 0023 ~XYDifferentiationCurvePrivate() override; 0024 0025 virtual bool recalculateSpecific(const AbstractColumn* tmpXDataColumn, const AbstractColumn* tmpYDataColumn) override; 0026 virtual void resetResults() override; 0027 0028 XYDifferentiationCurve::DifferentiationData differentiationData; 0029 XYDifferentiationCurve::DifferentiationResult differentiationResult; 0030 0031 XYDifferentiationCurve* const q; 0032 }; 0033 0034 #endif