Subversion Repositories Code-Repo

Compare Revisions

Ignore whitespace Rev 334 → Rev 335

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