mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

libcomp.cpp libcomp.h optimizedialog.h spicefile.h subcircuit.cpp verilogfile.cpp verilogfile.h vhdlfile.cpp vhdlfile.h except componentdialog and spicedialog
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
/***************************************************************************
|
|
verilogfile.h
|
|
-------------
|
|
begin : Sat Mar 31 2007
|
|
copyright : (C) 2007 by Stefan Jahn
|
|
email : stefa@lkcc.org
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef VERILOGFILE_H
|
|
#define VERILOGFILE_H
|
|
|
|
#include "component.h"
|
|
|
|
class QTextStream;
|
|
class QString;
|
|
|
|
|
|
class Verilog_File : public MultiViewComponent {
|
|
public:
|
|
Verilog_File();
|
|
~Verilog_File() {};
|
|
Component* newOne();
|
|
static Element* info(QString&, char* &, bool getNewOne=false);
|
|
|
|
bool createSubNetlist(QTextStream *);
|
|
QString getErrorText() { return ErrText; }
|
|
QString getSubcircuitFile();
|
|
|
|
protected:
|
|
QString verilogCode(int);
|
|
void createSymbol();
|
|
QString loadFile();
|
|
|
|
QString ModuleName;
|
|
QString ErrText;
|
|
};
|
|
|
|
class Verilog_File_Info {
|
|
public:
|
|
Verilog_File_Info();
|
|
Verilog_File_Info(QString, bool isfile = false);
|
|
~Verilog_File_Info() {};
|
|
QString parsePorts(QString, int);
|
|
|
|
public:
|
|
QString ModuleName;
|
|
QString PortNames;
|
|
};
|
|
|
|
#endif
|