Pile Group Tool  2.0.3
Educational tool demonstrating behavior of pile groups in layered soil
resultplotqcp.h
1 #ifndef RESULTPLOTQCP_H
2 #define RESULTPLOTQCP_H
3 
4 #include "resultplotsuper.h"
5 
6 class QCustomPlot;
7 
9 {
10 public:
11  ResultPlotQCP(QWidget *parent = nullptr);
12  ~ResultPlotQCP();
13  void refresh(void);
14 
15 protected:
16  QCustomPlot *plot;
17 };
18 
19 #endif // RESULTPLOTQCP_H
The ResultPlotSuper class is an abstract class implementing simple line plots.
Definition: resultplotsuper.h:8
The ResultPlotQwt class implements the QCP library interface for ResultPlotSuper. ...
Definition: resultplotqcp.h:8