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

-introduced new type spicecompat::SpiceDialect to distinguish SPICE, Xyce and CDL -adapt dependent components accordingly Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
19 lines
419 B
C++
19 lines
419 B
C++
#ifndef S4Q_IEQNDEF_H
|
|
#define S4Q_IEQNDEF_H
|
|
|
|
#include "components/component.h"
|
|
|
|
class S4Q_Ieqndef : public Component {
|
|
public:
|
|
S4Q_Ieqndef();
|
|
~S4Q_Ieqndef();
|
|
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 // S4Q_IEQNDEF_H
|