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/Load.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Project/Load.h (limited to 'Project/Load.h') diff --git a/Project/Load.h b/Project/Load.h new file mode 100644 index 0000000..393ff7a --- /dev/null +++ b/Project/Load.h @@ -0,0 +1,21 @@ +#ifndef LOAD_H +#define LOAD_H + +#include "Shunt.h" + +class Load : public Shunt +{ + public: + Load(); + ~Load(); + + virtual bool AddParent(Element* parent, wxPoint2DDouble position); + virtual void Draw(wxPoint2DDouble translation, double scale) const; + virtual void Rotate(); + virtual bool GetContextMenu(wxMenu& menu); + + private: + std::vector m_triangPts; +}; + +#endif // LOAD_H -- cgit