mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

* Makefile.am (libcomponents_a_SOURCES): Added many new digital primitives. Thanks a lot to Mike Brinson for the huge effort. git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@1630 b5b04e8c-4942-46c9-ab4f-83783d557d1c
30 lines
652 B
C++
30 lines
652 B
C++
/*
|
|
* pad4bit.h - device definitions for pad4bit module
|
|
*
|
|
* This 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, or (at your option)
|
|
* any later version.
|
|
*
|
|
*/
|
|
|
|
#ifndef pad4bit_H
|
|
#define pad4bit_H
|
|
|
|
#include "component.h"
|
|
|
|
class pad4bit : public Component
|
|
{
|
|
public:
|
|
pad4bit();
|
|
~pad4bit() { };
|
|
Component* newOne();
|
|
static Element* info(QString&, char* &, bool getNewOne=false);
|
|
protected:
|
|
void createSymbol();
|
|
QString vhdlCode(int);
|
|
QString verilogCode(int);
|
|
};
|
|
|
|
#endif /* pad4bit_H */
|