#include "adevs.h" #include #include #include #include using namespace std; using namespace adevs; /* A queuing problem. The generator creates jobs for the server + queue. The transducer counts finished jobs and reports throughput and turn around time. The input/output time is the Time at which the job was created. */ class Transducer; class Processor; class Generator; Transducer* transducer; Processor* processor; Generator* generator; class Transducer: public Model