qucs_s/qucs/components/mosfet_sub.h

46 lines
1.6 KiB
C
Raw Permalink Normal View History

2004-06-06 14:13:59 +00:00
/***************************************************************************
2005-10-24 06:10:35 +00:00
mosfet_sub.h
--------------
2004-06-06 14:13:59 +00:00
begin : Fri Jun 4 2004
copyright : (C) 2003 by Michael Margraf
2004-06-16 17:41:33 +00:00
email : michael.margraf@alumni.tu-berlin.de
2004-06-06 14:13:59 +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. *
* *
***************************************************************************/
2004-08-08 17:52:32 +00:00
#ifndef MOSFET_SUB_H
#define MOSFET_SUB_H
2004-06-06 14:13:59 +00:00
#include "component.h"
2007-02-19 07:07:50 +00:00
class Basic_MOSFET : public MultiViewComponent {
public:
Basic_MOSFET();
~Basic_MOSFET() {};
};
class MOSFET_sub : public Basic_MOSFET {
2004-06-06 14:13:59 +00:00
public:
2004-08-08 17:52:32 +00:00
MOSFET_sub();
2006-04-28 06:04:44 +00:00
~MOSFET_sub() {};
2004-06-06 14:13:59 +00:00
Component* newOne();
2005-06-23 06:06:40 +00:00
static Element* info(QString&, char* &, bool getNewOne=false);
static Element* info_p(QString&, char* &, bool getNewOne=false);
static Element* info_depl(QString&, char* &, bool getNewOne=false);
2006-04-28 06:04:44 +00:00
protected:
void createSymbol();
QString spice_netlist(spicecompat::SpiceDialect dialect = spicecompat::SPICEDefault);
virtual QString cdl_netlist();
2004-06-06 14:13:59 +00:00
};
#endif