radec/src/xnorGate.h

16 lines
278 B
C
Raw Normal View History

#ifndef XNOR
#define XNOR
#include "gate.h"
#include "event.h"
#include "wire.h"
class xnorGate : public gate {
2017-04-14 19:10:32 -04:00
public:
xnorGate(priority_queue<event> *eQueue, int d, wire* wire1, wire* wire2,
wire* wire3);
void evaluate(int evTime);
int getDelay();
};
#endif // !XNOR