Simulate … Event struct
10/28/98
11
Ramamurthy
enum EventKind {A, D};
typedef struct Event
{
EventKind WhichEvent;
int Time; // arrival time
int TransTime; // processing time
Event(); // constructors
Event (EventKind E, int Atime, int Ttime);
};
Previous slide
Next slide
Back to first slide
View graphic version