qucs_s/qucs/components/andor4x4.h

30 lines
660 B
C
Raw Permalink Normal View History

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