diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-05-24 17:50:36 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-05-24 17:50:36 -0300 |
commit | c91e58bb903adeff1e8c0fff1868e80783010e58 (patch) | |
tree | d9eaa3ff5b186cddb8bd658a8386e58591fd8174 /Project/ControlElementSolver.h | |
parent | 2c60c7c13ecc8e45e072346193a820f697fb6fdf (diff) | |
download | PSP.git-c91e58bb903adeff1e8c0fff1868e80783010e58.tar.gz PSP.git-c91e58bb903adeff1e8c0fff1868e80783010e58.tar.xz PSP.git-c91e58bb903adeff1e8c0fff1868e80783010e58.zip |
Dynamic elements initialization implemented
Diffstat (limited to 'Project/ControlElementSolver.h')
-rw-r--r-- | Project/ControlElementSolver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project/ControlElementSolver.h b/Project/ControlElementSolver.h index 9bc644c..26b8ec5 100644 --- a/Project/ControlElementSolver.h +++ b/Project/ControlElementSolver.h @@ -32,7 +32,7 @@ class ControlElementSolver bool startAllZero = true, double input = 0.0, wxWindow* parent = NULL); - ~ControlElementSolver() {} + virtual ~ControlElementSolver() {} virtual bool InitializeValues(double input, bool startAllZero); virtual void SolveNextStep(double input); virtual std::vector<double> GetSolutions() { return m_solutions; } |