Qucs-GUI
0.0.19
|
00001 /*************************************************************************** 00002 mutualx.cpp 00003 ----------- 00004 begin : Mon Nov 24 2014 00005 copyright : (C) 2010 by Michael Margraf 00006 email : michael.margraf@alumni.tu-berlin.de 00007 adapted for Qucs : Vadim Kuznetsov 00008 email : ra3xdh@gmail.com 00009 ***************************************************************************/ 00010 00011 /*************************************************************************** 00012 * * 00013 * This program is free software; you can redistribute it and/or modify * 00014 * it under the terms of the GNU General Public License as published by * 00015 * the Free Software Foundation; either version 2 of the License, or * 00016 * (at your option) any later version. * 00017 * * 00018 ***************************************************************************/ 00019 00020 00021 #ifndef MUTUALX_H 00022 #define MUTUALX_H 00023 00024 #include "component.h" 00025 00026 00027 class MutualX : public MultiViewComponent { 00028 public: 00029 MutualX(); 00030 ~MutualX() {}; 00031 Component* newOne(); 00032 static Element* info(QString& Name, char* &BitmapFile, bool getNewOne); 00033 00034 protected: 00035 void createSymbol(); 00036 QString netlist(); 00037 }; 00038 00039 #endif