6 #ifndef SRC_SIMULATOR_H_
7 #define SRC_SIMULATOR_H_
23 virtual bool Start(std::ostream& out) = 0;
24 virtual bool Update(std::ostream& out) = 0;
29 std::list<Bus *> active_buses_;
30 std::list<Stop *> all_stops_;
35 std::vector<Route *> prototype_routes_;
36 std::vector<double *> distance_between_sets_;
37 std::vector<PassengerGenerator *> passenger_generators_;
41 #endif // SRC_SIMULATOR_H_