diff options
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..c210279 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 rapidxml::xml_node<>* SaveElement(rapidxml::xml_document<>& doc, rapidxml::xml_node<>* elementListNode); + virtual bool OpenElement(rapidxml::xml_node<>* elementNode, std::vector<Element*> parentList); + protected: IndMotorElectricalData m_electricalData; }; |