diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2018-01-05 20:04:28 -0200 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2018-01-05 20:04:28 -0200 |
commit | 95f61a7cad71c45c9e27af5c6f4bc5d64d5ecc45 (patch) | |
tree | d11fb974997f49942977a5ce3318074ea503f9bc /Project/IndMotor.h | |
parent | 76df1de5e2307229da9870306e4a1031170aaadf (diff) | |
download | PSP.git-95f61a7cad71c45c9e27af5c6f4bc5d64d5ecc45.tar.gz PSP.git-95f61a7cad71c45c9e27af5c6f4bc5d64d5ecc45.tar.xz PSP.git-95f61a7cad71c45c9e27af5c6f4bc5d64d5ecc45.zip |
Some power element file hand. organized
Diffstat (limited to 'Project/IndMotor.h')
-rw-r--r-- | Project/IndMotor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Project/IndMotor.h b/Project/IndMotor.h index 511eb61..bd2c572 100644 --- a/Project/IndMotor.h +++ b/Project/IndMotor.h @@ -52,6 +52,10 @@ class IndMotor : public Machines virtual IndMotorElectricalData GetElectricalData() { return m_electricalData; } virtual IndMotorElectricalData GetPUElectricalData(double systemPowerBase); virtual void SetElectricalData(IndMotorElectricalData electricalData) { m_electricalData = electricalData; } + + virtual void SaveElement(rapidxml::xml_document<>& doc, rapidxml::xml_node<>* elementListNode); + virtual bool OpenElement(rapidxml::xml_node<>* elementNode, std::vector<Element*> parentList); + protected: IndMotorElectricalData m_electricalData; }; |