summaryrefslogtreecommitdiffstats
path: root/Project/Inductor.cpp
blob: 26592951000c836e7757b2c2f4bb52a85d7a83c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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)
{
}