qucs_s/qucs/extsimkernels/verilogawriter.h

21 lines
332 B
C
Raw Normal View History

2015-07-19 14:33:42 +03:00
#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