// // CSE143, Summer 2001 // Homework 5 // Air Traffic Control Starter Code // Simulator.h // #ifndef SIMULATOR_H #define SIMULATOR_H #include "AircraftList.h" class Simulator { public: Simulator() {}; //the step function represents the actions which will occur in your //simulation at each time step. void step() {} private: AircraftList aircrafts; //represents all aircraft in the simulation }; #endif