Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef ROUTE_H
- #define ROUTE_H
- #include <vector>
- #include <iostream>
- #include <string>
- using namespace std;
- class Route {
- public:
- Route();
- void populate(string);
- void sort_packages();
- void time_calculation();
- void raw_route_piece(string);
- private:
- vector<string> raw_route;
- vector<string> raw_route_piece;
- protected:
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment