summaryrefslogtreecommitdiffstats
path: root/Project/Gain.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project/Gain.h')
-rw-r--r--Project/Gain.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Project/Gain.h b/Project/Gain.h
index 4d436f9..c5ed6bd 100644
--- a/Project/Gain.h
+++ b/Project/Gain.h
@@ -50,7 +50,7 @@ class Gain : public ControlElement
virtual void UpdatePoints();
/**
* @brief Multiply the input by a constant
- *
+ *
* <center>\f$ output = K \cdot input \f$</center>
* @param input Input value.
* @param timeStep Time step.
@@ -58,6 +58,9 @@ class Gain : 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: