Qucs-GUI
0.0.19
|
00001 /*************************************************************************** 00002 vafile.h 00003 ---------- 00004 begin : Sun Oct 26 2009 00005 copyright : (C) 2009 by Stefan Jahn 00006 email : stefa@lkcc.org 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 #ifndef VAFILE_H 00019 #define VAFILE_H 00020 00021 class VerilogA_File_Info { 00022 public: 00023 VerilogA_File_Info (); 00024 VerilogA_File_Info (QString, bool isfile = false); 00025 ~VerilogA_File_Info () {}; 00026 QString parsePorts (QString, int); 00027 00028 public: 00029 QString ModuleName; 00030 QString PortNames; 00031 }; 00032 00033 #endif