mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Make externally driven transient sim. inherit from SimulationComponent
This commit is contained in:
parent
267fa51fd4
commit
1813ec9b64
@ -15,27 +15,13 @@
|
||||
* *
|
||||
***************************************************************************/
|
||||
#include "etr_sim.h"
|
||||
#include "main.h"
|
||||
|
||||
|
||||
ETR_Sim::ETR_Sim()
|
||||
{
|
||||
Description = QObject::tr("externally driven transient simulation");
|
||||
Simulator = spicecompat::simQucsator;
|
||||
|
||||
QString s = Description;
|
||||
int a = 17;
|
||||
s[a] = '\n';
|
||||
|
||||
Texts.append(new Text(0, 0, s.left(a), Qt::darkBlue, QucsSettings.largeFontSize));
|
||||
if (a != -1)
|
||||
Texts.append(new Text(0, 0, s.mid(a+1), Qt::darkBlue, QucsSettings.largeFontSize));
|
||||
|
||||
x1 = -10; y1 = -9;
|
||||
x2 = x1+130; y2 = y1+59;
|
||||
|
||||
tx = 0;
|
||||
ty = y2+1;
|
||||
initSymbol(Description);
|
||||
Model = ".ETR";
|
||||
Name = "ETR";
|
||||
|
||||
|
@ -18,10 +18,10 @@
|
||||
#ifndef ETR_SIM_H
|
||||
#define ETR_SIM_H
|
||||
|
||||
#include "component.h"
|
||||
#include "simulation.h"
|
||||
|
||||
|
||||
class ETR_Sim : public Component {
|
||||
class ETR_Sim : public qucs::component::SimulationComponent {
|
||||
public:
|
||||
ETR_Sim();
|
||||
~ETR_Sim();
|
||||
|
Loading…
x
Reference in New Issue
Block a user