13 lines
284 B
C++
13 lines
284 B
C++
#include "event.h"
|
|
|
|
event::event(int num, int value, int setTime, int wire, wire *output) : evNum(num), evValue(value),
|
|
evTime(setTime), out(output) {}
|
|
|
|
bool event::operator<(const event &e1) {
|
|
if(evTime == e1.evTime) {
|
|
return evNum > e1.evNum;
|
|
}
|
|
return evTime > e1.evTime;
|
|
}
|
|
|