Qucs-GUI  0.0.18
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
comp_2bit.h
Go to the documentation of this file.
1 /*
2  * comp_2bit.h - device definitions for comp_2bit module
3  *
4  * This is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2, or (at your option)
7  * any later version.
8  *
9  */
10 
11 #ifndef comp_2bit_H
12 #define comp_2bit_H
13 
14 #include "component.h"
15 
16 class comp_2bit : public Component
17 {
18  public:
19  comp_2bit();
20  ~comp_2bit() { };
21  Component* newOne();
22  static Element* info(QString&, char* &, bool getNewOne=false);
23  protected:
24  void createSymbol();
25  QString vhdlCode(int);
26  QString verilogCode(int);
27 };
28 
29 #endif /* comp_2bit_H */
QString verilogCode(int)
Definition: comp_2bit.cpp:124
QString vhdlCode(int)
Definition: comp_2bit.cpp:99
static Element * info(QString &, char *&, bool getNewOne=false)
Definition: comp_2bit.cpp:49
Superclass of all schematic drawing elements.
Definition: element.h:142
void createSymbol()
Definition: comp_2bit.cpp:58
~comp_2bit()
Definition: comp_2bit.h:20
Component * newOne()
Definition: comp_2bit.cpp:41