pgiovanni

Untitled

Oct 14th, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #ifndef ROUTE_H
  2. #define ROUTE_H
  3. #include <vector>
  4. #include <iostream>
  5. #include <string>
  6. using namespace std;
  7.  
  8. class Route {
  9.  
  10. public:
  11.     Route();
  12.     void populate(string);
  13.     void sort_packages();
  14.     void time_calculation();
  15.     void raw_route_piece(string);
  16.    
  17.  
  18. private:
  19.     vector<string> raw_route;
  20.     vector<string> raw_route_piece;
  21.    
  22.  
  23. protected:
  24.  
  25. };
  26.  
  27. #endif
Advertisement
Add Comment
Please, Sign In to add comment