qucs_s/qucs/components/comp_2bit.h
ela 808b4f19d1 2009-03-03 Stefan Jahn <stefan@lkcc.org>
* 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
2009-03-03 18:32:15 +00:00

30 lines
668 B
C++

/*
* comp_2bit.h - device definitions for comp_2bit 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 comp_2bit_H
#define comp_2bit_H
#include "component.h"
class comp_2bit : public Component
{
public:
comp_2bit();
~comp_2bit() { };
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
protected:
void createSymbol();
QString vhdlCode(int);
QString verilogCode(int);
};
#endif /* comp_2bit_H */