1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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