Qucs-GUI  0.0.18
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dmux3to8.h
Go to the documentation of this file.
1 /*
2  * dmux3to8.h - device definitions for dmux3to8 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 dmux3to8_H
12 #define dmux3to8_H
13 #include "component.h"
14 
15 class dmux3to8 : public Component
16 {
17  public:
18  dmux3to8();
19  ~dmux3to8() { };
20  Component* newOne();
21  static Element* info(QString&, char* &, bool getNewOne=false);
22  protected:
23  void createSymbol();
24  QString vhdlCode(int);
25  QString verilogCode(int);
26 };
27 
28 #endif /* dmux3to8_H */
QString vhdlCode(int)
Definition: dmux3to8.cpp:121
QString verilogCode(int)
Definition: dmux3to8.cpp:156
~dmux3to8()
Definition: dmux3to8.h:19
static Element * info(QString &, char *&, bool getNewOne=false)
Definition: dmux3to8.cpp:50
Superclass of all schematic drawing elements.
Definition: element.h:142
dmux3to8()
Definition: dmux3to8.cpp:24
Component * newOne()
Definition: dmux3to8.cpp:42
void createSymbol()
Definition: dmux3to8.cpp:59