From 726686c9b378f3a727ded52226b13a760cba1e6c Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Sat, 3 Sep 2016 17:09:24 -0300 Subject: Inductor under implementation Ind motor, sync condenser and load implemented --- Project/SyncMotor.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Project/SyncMotor.h (limited to 'Project/SyncMotor.h') diff --git a/Project/SyncMotor.h b/Project/SyncMotor.h new file mode 100644 index 0000000..ab7a1ac --- /dev/null +++ b/Project/SyncMotor.h @@ -0,0 +1,17 @@ +#ifndef SYNCMOTOR_H +#define SYNCMOTOR_H + +#include "Machines.h" + +class SyncMotor : public Machines +{ +public: + SyncMotor(); + ~SyncMotor(); + + virtual void DrawSymbol() const; + virtual bool GetContextMenu(wxMenu& menu); + +}; + +#endif // SYNCMOTOR_H -- cgit