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