// globals.h: global variables for the CSC 270 simulation example // -- J. Clarke, March-June 1996 // Should all these be global? How could you make them non-global? extern double simulationTime; // the current time extern statsClass * stats; // holds accumulated statistics extern eventListClass * eventList; // the event list extern pumpStandClass * pumpStand; // the pumps at the gas station extern carQueueClass * carQueue; // the queue of waiting cars