1 #ifndef RESULTPLOTSUPER_H 2 #define RESULTPLOTSUPER_H 6 #include "pilegrouptool_parameters.h" 13 virtual void plotResults(QVector<QVector<double> *> &, QVector<QVector<double> *> &);
14 virtual void updateSoil(QVector<double> &layerDepth);
15 virtual void refresh(
void) = 0;
22 QVector<double> depthOfLayer = QVector<double>(4, 0.0);
23 QVector<QVector<double> > m_pos;
24 QVector<QVector<double> > m_data;
27 #endif // RESULTPLOTSUPER_H The ResultPlotSuper class is an abstract class implementing simple line plots.
Definition: resultplotsuper.h:8