Subversion Repositories Code-Repo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
335 Kevin 1
#ifndef GATE_NAND_H
2
#define GATE_NAND_H
3
 
4
#include "GlobalDefines.h"
5
#include "Gate_BASE.h"
6
 
7
class Gate_NAND : public Gate_BASE
8
{
9
    public:
10
        Gate_NAND(int gateID, gType type,
11
                 int numInputs, int gateLevel);
12
 
13
        void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
14
        void simulateToOutput();
15
};
16
 
17
#endif // GATE_NAND_H