38 lines
1.5 KiB
C
Raw Normal View History

2004-01-31 21:27:38 +00:00
/***************************************************************************
iprobe.h - description
-------------------
begin : Sat Aug 23 2003
copyright : (C) 2003 by Michael Margraf
2004-06-16 17:41:33 +00:00
email : michael.margraf@alumni.tu-berlin.de
2004-01-31 21:27:38 +00:00
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef IPROBE_H
#define IPROBE_H
#include "component.h"
class iProbe : public Component {
public:
2004-06-06 14:13:59 +00:00
iProbe();
~iProbe();
Component* newOne();
2005-06-23 06:06:40 +00:00
static Element* info(QString&, char* &, bool getNewOne=false);
QString getExpression(spicecompat::SpiceDialect) { return "";}
QString getProbeVariable(spicecompat::SpiceDialect dialect = spicecompat::SPICEDefault);
2015-02-15 18:52:59 +03:00
protected:
QString spice_netlist(spicecompat::SpiceDialect dialect = spicecompat::SPICEDefault);
2004-01-31 21:27:38 +00:00
};
#endif