11 lines
192 B
C++
11 lines
192 B
C++
#ifndef NOR
|
|
#define NOR
|
|
|
|
class norGate : public gate {
|
|
norGate(priority_queue<event> *eQueue, int d, wire* wire1, wire* wire2,
|
|
wire* wire3);
|
|
void evaluate(int evTime);
|
|
};
|
|
|
|
#endif // !NOR
|