mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
21 lines
332 B
C
21 lines
332 B
C
![]() |
#ifndef VERILOGAWRITER_H
|
||
|
#define VERILOGAWRITER_H
|
||
|
|
||
|
#include <QtCore>
|
||
|
#include <schematic.h>
|
||
|
|
||
|
class VerilogAwriter
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
VerilogAwriter();
|
||
|
~VerilogAwriter();
|
||
|
protected:
|
||
|
bool prepareToVerilogA(Schematic *sch);
|
||
|
public:
|
||
|
bool createVA_module(QTextStream &stream, Schematic *sch);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // VERILOGAWRITER_H
|