Qucs-GUI  0.0.18
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ecvs.h
Go to the documentation of this file.
1 /***************************************************************************
2  ecvs.h - description
3  -----------------------
4  copyright : (C) 2013 by Richard Crozier
5  email : richard dot crozier at yahoo dot co dot uk
6  ***************************************************************************/
7 
8 /***************************************************************************
9  * *
10  * This program is free software; you can redistribute it and/or modify *
11  * it under the terms of the GNU General Public License as published by *
12  * the Free Software Foundation; either version 2 of the License, or *
13  * (at your option) any later version. *
14  * *
15  ***************************************************************************/
16 
27 #ifndef ECVS_H
28 #define ECVS_H
29 
30 #include "component.h"
31 
32 
33 class ecvs : public Component {
34 public:
35  ecvs();
36  ~ecvs();
37  Component* newOne();
38  static Element* info(QString&, char* &, bool getNewOne=false);
39 
40 protected:
41  QString netlist();
42 };
43 
44 #endif
45 
ecvs()
Definition: ecvs.cpp:21
~ecvs()
Definition: ecvs.cpp:75
Component * newOne()
Definition: ecvs.cpp:79
Superclass of all schematic drawing elements.
Definition: element.h:142
static Element * info(QString &, char *&, bool getNewOne=false)
Definition: ecvs.cpp:84
Definition: ecvs.h:33
QString netlist()
Definition: ecvs.cpp:95