My Project
rtest_passenger_generator.h
Go to the documentation of this file.
1 
7 #ifndef SRC_RTEST_PASSENGER_GENERATOR_H_
8 #define SRC_RTEST_PASSENGER_GENERATOR_H_
9 
10 #include <list>
11 #include <random>
12 #include <ctime>
13 
15 #include "src/stop.h"
16 
17 class Stop; // forward declaration
18 
20  public:
21  RtestPassengerGenerator(std::list<double>, std::list<Stop *>);
22  int GeneratePassengers() override;
23 
24  private:
25  static std:: minstd_rand0 my_rand;
26 };
27 
28 #endif // SRC_RTEST_PASSENGER_GENERATOR_H_
Stop
The main class to define stop.
Definition: stop.h:22
PassengerGenerator
Virtual class for the generation of passengers.
Definition: passenger_generator.h:19
stop.h
RtestPassengerGenerator
Definition: rtest_passenger_generator.h:19
passenger_generator.h