qucs_s/qucs/components/mux4to1.h

30 lines
652 B
C
Raw Permalink Normal View History

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