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);
|
2025-01-19 15:18:24 +01:00
|
|
|
QString getExpression(spicecompat::SpiceDialect) { return "";}
|
2025-01-19 15:37:39 +01:00
|
|
|
QString getProbeVariable(spicecompat::SpiceDialect dialect = spicecompat::SPICEDefault);
|
2024-12-17 11:00:45 +01:00
|
|
|
|
2015-02-15 18:52:59 +03:00
|
|
|
protected:
|
2024-12-30 16:48:05 +01:00
|
|
|
QString spice_netlist(spicecompat::SpiceDialect dialect = spicecompat::SPICEDefault);
|
2004-01-31 21:27:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|