Subversion Repositories Code-Repo

Rev

Blame | Last modification | View Log | RSS feed

#ifndef GATE_NOR_H
#define GATE_NOR_H

#include "GlobalDefines.h"
#include "Gate_BASE.h"

class Gate_NOR : public Gate_BASE
{
    public:
        Gate_NOR(int gateID, gType type,
                 int numInputs, int gateLevel);

        void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
        void simulateToOutput();
};

#endif // GATE_NOR_H