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/Inductor.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Project/Inductor.cpp (limited to 'Project/Inductor.cpp') diff --git a/Project/Inductor.cpp b/Project/Inductor.cpp new file mode 100644 index 0000000..2659295 --- /dev/null +++ b/Project/Inductor.cpp @@ -0,0 +1,25 @@ +#include "Inductor.h" + +Inductor::Inductor() : Shunt() +{ +} + +Inductor::~Inductor() +{ +} + +bool Inductor::AddParent(Element* parent, wxPoint2DDouble position) +{ +} + +void Inductor::Draw(wxPoint2DDouble translation, double scale) const +{ +} + +void Inductor::Rotate() +{ +} + +bool Inductor::GetContextMenu(wxMenu& menu) +{ +} -- cgit