diff options
Diffstat (limited to 'Project/Inductor.h')
-rw-r--r-- | Project/Inductor.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Project/Inductor.h b/Project/Inductor.h new file mode 100644 index 0000000..7c6b535 --- /dev/null +++ b/Project/Inductor.h @@ -0,0 +1,18 @@ +#ifndef INDUCTOR_H +#define INDUCTOR_H + +#include "Shunt.h" + +class Inductor : public Shunt +{ +public: + Inductor(); + ~Inductor(); + + virtual bool AddParent(Element* parent, wxPoint2DDouble position); + virtual void Draw(wxPoint2DDouble translation, double scale) const; + virtual void Rotate(); + virtual bool GetContextMenu(wxMenu& menu); +}; + +#endif // INDUCTOR_H |