radec/src/NotGate.h

17 lines
252 B
C
Raw Permalink Normal View History

2017-04-23 19:13:23 -04:00
#ifndef NOT
#define NOT
#include "Gate.h"
#include "Wire.h"
#include "Event.h"
2017-04-23 19:33:58 -04:00
using namespace std;
2017-04-23 19:13:23 -04:00
class NotGate : public Gate {
public:
NotGate(int d, Wire* wire1, Wire* wire2);
Event evaluate(int evTime);
int getDelay();
2017-04-23 19:13:23 -04:00
};
#endif // !NOT