From c6d815b6b11504be68d7a97df63cfef749624418 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Wed, 20 Dec 2017 20:45:35 -0200 Subject: Math expr GUI implemented --- Project/Gain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Project/Gain.h') diff --git a/Project/Gain.h b/Project/Gain.h index 8570672..2f6a027 100644 --- a/Project/Gain.h +++ b/Project/Gain.h @@ -56,7 +56,7 @@ class Gain : public ControlElement * @param timeStep Time step. * @return Always true. */ - virtual bool Solve(double input, double timeStep); + virtual bool Solve(double input, double timeStep, double currentTime); virtual Element* GetCopy(); -- cgit From dbe0b112622f8e91fa3e44a6b6e1aa7e230d3ded Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Sun, 31 Dec 2017 17:59:10 -0200 Subject: Math Expression implemented --- Project/Gain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Project/Gain.h') diff --git a/Project/Gain.h b/Project/Gain.h index 2f6a027..4d436f9 100644 --- a/Project/Gain.h +++ b/Project/Gain.h @@ -56,7 +56,7 @@ class Gain : public ControlElement * @param timeStep Time step. * @return Always true. */ - virtual bool Solve(double input, double timeStep, double currentTime); + virtual bool Solve(double* input, double timeStep); virtual Element* GetCopy(); -- cgit