summaryrefslogtreecommitdiffstats
path: root/Project/Exponential.h
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2018-01-04 19:11:08 -0200
committerThales Lima Oliveira <thaleslima.ufu@gmail.com>2018-01-04 19:11:08 -0200
commit76df1de5e2307229da9870306e4a1031170aaadf (patch)
tree6d7144e9982a824474279f02574c918ce8fa0e9d /Project/Exponential.h
parentcef9e14b989a3ba19321e4fe215ada2ee3998037 (diff)
downloadPSP.git-76df1de5e2307229da9870306e4a1031170aaadf.tar.gz
PSP.git-76df1de5e2307229da9870306e4a1031170aaadf.tar.xz
PSP.git-76df1de5e2307229da9870306e4a1031170aaadf.zip
Control elements file handling reorganized
Diffstat (limited to 'Project/Exponential.h')
-rw-r--r--Project/Exponential.h7
1 files changed, 5 insertions, 2 deletions
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.
- *
+ *
* <center>\f$ output = A\cdot e^{B\cdot input} \f$</center>
* @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: