#ifndef _inductors_h_
#define _inductors_h_
class CP_LCHIP603 : public TPart {
public:
port A;
port B;
CP_LCHIP603() {
SetPackage( "SRC603", 2 );
SetReferencePrefix( "L" );
}
virtual void Register() {
reg( A );
A.SetPin( "1" );
reg( B );
B.SetPin( "2" );
}
};
class CP_LCHIP805 : public TPart {
public:
port A;
port B;
CP_LCHIP805() {
SetPackage( "SRC805", 2 );
SetReferencePrefix( "L" );
}
virtual void Register() {
reg( A );
A.SetPin( "1" );
reg( B );
B.SetPin( "2" );
}
};
class CP_LCHIP1206 : public TPart {
public:
port A;
port B;
CP_LCHIP1206() {
SetPackage( "SRC1206", 2 );
SetReferencePrefix( "L" );
}
virtual void Register() {
reg( A );
A.SetPin( "1" );
reg( B );
B.SetPin( "2" );
}
};
class CP_LCHIP2220 : public TPart {
public:
port A;
port B;
CP_LCHIP2220() {
SetPackage( "SRC2220", 2 );
SetReferencePrefix( "L" );
}
virtual void Register() {
reg( A );
A.SetPin( "1" );
reg( B );
B.SetPin( "2" );
}
};
#endif