Coolquest, Inc. | Home | Products | Support | About | Contact | |||
|
<< File View >> | Class View | Parts Library | Examples Home |
// This File Generated by: pt_to_h.exe // Source File: xc2vp_mgt.pt // Destination File: xc2vp_mgt.h #ifndef _xc2vp_mgt_h_ #define _xc2vp_mgt_h_ // AR_OFF -- auto registration is not needed // THIS FILE IS IN THE PUBLIC DOMAIN. // IT IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT // NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. class CP_MGT_CPOS603 : public TPart { // chip capacitor with POS and GND ports in 603 package public: port POS; port GND; CP_MGT_CPOS603() { SetPackage( "SRC603", 2 ); SetReferencePrefix( "MC" ); // use special prefix --> reference designator may be omitted on silkscreen if part outline is distinctive } virtual void Register() { reg( POS ); POS.SetPin( "1" ); reg( GND ); GND.SetPin( "2" ); } }; class CP_MGT_LCHIP603 : public TPart { // ferrite in 603 package public: port A; port B; CP_MGT_LCHIP603() { SetPackage( "SRC603", 2 ); SetReferencePrefix( "ML" ); // use special prefix --> reference designator may be omitted on silkscreen if part outline is distinctive } virtual void Register() { reg( A ); A.SetPin( "1" ); reg( B ); B.SetPin( "2" ); } }; class CP_MGT_LCHIP402 : public TPart { // ferrite in 402 package public: port A; port B; CP_MGT_LCHIP402() { SetPackage( "SRC402", 2 ); SetReferencePrefix( "ML" ); // use special prefix --> reference designator may be omitted on silkscreen if part outline is distinctive } virtual void Register() { reg( A ); A.SetPin( "1" ); reg( B ); B.SetPin( "2" ); } }; #endif
<< File View >> | Class View | Parts Library | Examples Home |
Legal | Copyright © 2007 by Coolquest, Inc. | Contact |