diff options
Diffstat (limited to 'Project/IndMotor.h')
-rw-r--r-- | Project/IndMotor.h | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/Project/IndMotor.h b/Project/IndMotor.h index 911edd1..7624e71 100644 --- a/Project/IndMotor.h +++ b/Project/IndMotor.h @@ -3,14 +3,30 @@ #include "Machines.h" +class IndMotorForm; + +struct IndMotorElectricalData { + wxString name; + double activePower = 100.0; + ElectricalUnit activePowerUnit = UNIT_MW; + double reactivePower = 0.0; + ElectricalUnit reactivePowerUnit = UNIT_MVAr; +}; + class IndMotor : public Machines { -public: - IndMotor(); - ~IndMotor(); - - virtual void DrawSymbol() const; - virtual bool GetContextMenu(wxMenu& menu); + public: + IndMotor(); + IndMotor(wxString name); + ~IndMotor(); + + virtual void DrawSymbol() const; + virtual bool GetContextMenu(wxMenu& menu); + virtual bool ShowForm(wxWindow* parent, Element* element); + virtual IndMotorElectricalData GetElectricalData() { return m_electricalData; } + virtual void SetElectricalData(IndMotorElectricalData electricalData) { m_electricalData = electricalData; } + protected: + IndMotorElectricalData m_electricalData; }; -#endif // INDMOTOR_H +#endif // INDMOTOR_H |