diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-09-03 17:09:24 -0300 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-09-03 17:09:24 -0300 |
commit | 726686c9b378f3a727ded52226b13a760cba1e6c (patch) | |
tree | 941150985ee1823041024ce50bc812303d30868e /Project/Inductor.cpp | |
parent | 077270f0294d236c6047d850703c5d011cb4b711 (diff) | |
download | PSP.git-726686c9b378f3a727ded52226b13a760cba1e6c.tar.gz PSP.git-726686c9b378f3a727ded52226b13a760cba1e6c.tar.xz PSP.git-726686c9b378f3a727ded52226b13a760cba1e6c.zip |
Inductor under implementation
Ind motor, sync condenser and load implemented
Diffstat (limited to 'Project/Inductor.cpp')
-rw-r--r-- | Project/Inductor.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
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) +{ +} |