Qucs-GUI
0.0.19
|
00001 /*************************************************************************** 00002 logical_nand.cpp 00003 ----------------- 00004 begin : Sun Sep 25 2005 00005 copyright : (C) 2005 by Michael Margraf 00006 email : michael.margraf@alumni.tu-berlin.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #include "logical_nand.h" 00019 00020 Logical_NAND::Logical_NAND() 00021 { 00022 Description = QObject::tr("logical NAND"); 00023 Model = "NAND"; 00024 00025 createSymbol(); 00026 tx = x1+4; 00027 ty = y2+4; 00028 } 00029 00030 Logical_NAND::~Logical_NAND() 00031 { 00032 } 00033 00034 Component* Logical_NAND::newOne() 00035 { 00036 Logical_NAND* p = new Logical_NAND(); 00037 p->Props.getFirst()->Value = Props.getFirst()->Value; 00038 p->Props.getLast()->Value = Props.getLast()->Value; 00039 p->recreate(0); 00040 return p; 00041 } 00042 00043 Element* Logical_NAND::info(QString& Name, char* &BitmapFile, bool getNewOne) 00044 { 00045 Name = QObject::tr("n-port NAND"); 00046 BitmapFile = (char *) "nand"; 00047 00048 if(getNewOne) return new Logical_NAND(); 00049 return 0; 00050 }