From 76df1de5e2307229da9870306e4a1031170aaadf Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Thu, 4 Jan 2018 19:11:08 -0200 Subject: Control elements file handling reorganized --- Project/Exponential.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Project/Exponential.h') diff --git a/Project/Exponential.h b/Project/Exponential.h index f9a65ec..8151b40 100644 --- a/Project/Exponential.h +++ b/Project/Exponential.h @@ -45,10 +45,10 @@ class Exponential : public ControlElement virtual void GetValues(double& aValue, double& bValue); virtual void SetValues(double aValue, double bValue); - + /** * @brief Calculates the exponential. - * + * *
\f$ output = A\cdot e^{B\cdot input} \f$
* @param input Input value. * @param timeStep Time step. @@ -56,6 +56,9 @@ class Exponential : public ControlElement */ virtual bool Solve(double* input, double timeStep); + virtual void SaveElement(rapidxml::xml_document<>& doc, rapidxml::xml_node<>* elementListNode); + virtual bool OpenElement(rapidxml::xml_node<>* elementNode); + virtual Element* GetCopy(); protected: -- cgit