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: monopins.pt // Destination File: monopins.h #ifndef _monopins_h_ #define _monopins_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_MONOPIN60 : public TPart { // monopin with 60-mil pad public: port A; CP_MONOPIN60() { SetPackage( "MONOPIN60", 1 ); SetReferencePrefix( "MP" ); } virtual void Register() { reg( A ); A.SetPin( "1" ); } }; class CP_MONOPIN25 : public TPart { // monopin with 25-mil pad public: port A; CP_MONOPIN25() { SetPackage( "MONOPIN25", 1 ); SetReferencePrefix( "MP" ); } virtual void Register() { reg( A ); A.SetPin( "1" ); } }; class CP_GROUNDPT25 : public TPart { // monopin with 25-mil pad, reference prefix = GP public: port A; CP_GROUNDPT25() { SetPackage( "MONOPIN25", 1 ); SetReferencePrefix( "GP" ); } virtual void Register() { reg( A ); A.SetPin( "1" ); } }; class CP_TESTPT25 : public TPart { // monopin with 25-mil pad, reference prefix = TP public: port A; CP_TESTPT25() { SetPackage( "MONOPIN25", 1 ); SetReferencePrefix( "TP" ); } virtual void Register() { reg( A ); A.SetPin( "1" ); } }; #endif
<< File View >> | Class View | Parts Library | Examples Home |
Legal | Copyright © 2007 by Coolquest, Inc. | Contact |