Qucs-GUI  0.0.18
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
tunneldiode.h
Go to the documentation of this file.
1 /***************************************************************************
2  copyright : (C) 2008 by Michael Margraf
3  email : michael.margraf@alumni.tu-berlin.de
4  ***************************************************************************/
5 
6 /***************************************************************************
7  * *
8  * This program is free software; you can redistribute it and/or modify *
9  * it under the terms of the GNU General Public License as published by *
10  * the Free Software Foundation; either version 2 of the License, or *
11  * (at your option) any later version. *
12  * *
13  ***************************************************************************/
14 
15 #ifndef TUNNELDIODE_H
16 #define TUNNELDIODE_H
17 
18 #include "component.h"
19 
20 class TunnelDiode : public Component {
21 public:
22  TunnelDiode();
23  Component* newOne();
24  static Element* info(QString&, char* &, bool getNewOne=false);
25 };
26 
27 #endif
static Element * info(QString &, char *&, bool getNewOne=false)
Definition: tunneldiode.cpp:82
Component * newOne()
Definition: tunneldiode.cpp:77
Superclass of all schematic drawing elements.
Definition: element.h:142