Qucs-GUI
0.0.19
|
00001 /*************************************************************************** 00002 ecvs.h - description 00003 ----------------------- 00004 copyright : (C) 2013 by Richard Crozier 00005 email : richard dot crozier at yahoo dot co dot uk 00006 ***************************************************************************/ 00007 00008 /*************************************************************************** 00009 * * 00010 * This program is free software; you can redistribute it and/or modify * 00011 * it under the terms of the GNU General Public License as published by * 00012 * the Free Software Foundation; either version 2 of the License, or * 00013 * (at your option) any later version. * 00014 * * 00015 ***************************************************************************/ 00016 00027 #ifndef ECVS_H 00028 #define ECVS_H 00029 00030 #include "component.h" 00031 00032 00033 class ecvs : public Component { 00034 public: 00035 ecvs(); 00036 ~ecvs(); 00037 Component* newOne(); 00038 static Element* info(QString&, char* &, bool getNewOne=false); 00039 00040 protected: 00041 QString netlist(); 00042 }; 00043 00044 #endif 00045