From 47cebfc84d4ae315f4bf8ffb3d074b2b75781a1b Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Mon, 5 Sep 2016 00:37:13 -0300 Subject: Capacitor under implementation --- Project/Capacitor.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Project/Capacitor.cpp (limited to 'Project/Capacitor.cpp') diff --git a/Project/Capacitor.cpp b/Project/Capacitor.cpp new file mode 100644 index 0000000..698d6a4 --- /dev/null +++ b/Project/Capacitor.cpp @@ -0,0 +1,25 @@ +#include "Capacitor.h" + +Capacitor::Capacitor() : Shunt() +{ +} + +Capacitor::~Capacitor() +{ +} + +bool Capacitor::AddParent(Element* parent, wxPoint2DDouble position) +{ +} + +void Capacitor::Draw(wxPoint2DDouble translation, double scale) const +{ +} + +void Capacitor::Rotate() +{ +} + +bool Capacitor::GetContextMenu(wxMenu& menu) +{ +} -- cgit