qucs_s/qucs/spicecomponents/src_eqndef.h
ThomasZecha 909f02340d New feature CDL netlist export
-introduced new type spicecompat::SpiceDialect to distinguish SPICE,
 Xyce and CDL
-adapt dependent components accordingly

Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
2024-12-30 16:52:35 +01:00

19 lines
413 B
C++

#ifndef SRC_EQNDEF_H
#define SRC_EQNDEF_H
#include "components/component.h"
class Src_eqndef : public Component {
public:
Src_eqndef();
~Src_eqndef();
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
protected:
QString netlist();
QString spice_netlist(spicecompat::SpiceDialect dialect = spicecompat::SPICEDefault);
QString va_code();
};
#endif // SRC_EQNDEF_H