qucs_s/qucs/components/pad3bit.h

30 lines
652 B
C
Raw Permalink Normal View History

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