/Classwork/ECE5505 - Test and Verification/Final Project/Gate_OUTPUT.h |
---|
0,0 → 1,17 |
#ifndef GATE_OUTPUT_H |
#define GATE_OUTPUT_H |
#include "GlobalDefines.h" |
#include "Gate_BASE.h" |
class Gate_OUTPUT : public Gate_BASE |
{ |
public: |
Gate_OUTPUT(int gateID, gType type, |
int numInputs, int gateLevel); |
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget); |
void simulateToOutput(); |
}; |
#endif // GATE_OUTPUT_H |