| 13 | class SectorInterface; |
| 14 | |
| 15 | class Path : public std::vector<std::string> |
| 16 | { |
| 17 | public: |
| 18 | Path() {} |
| 19 | Path(const std::vector<std::string>::const_iterator& begin, |
| 20 | const std::vector<std::string>::const_iterator& end); |
| 21 | Path(const std::vector<std::string> other); |
| 22 | Path(const std::string& text); |
| 23 | |
| 24 | public: |
| 25 | Path parent() const; |
| 26 | Path concat(const std::string& s) const; |
| 27 | std::string to_str(const std::string sep = "/") const; |
| 28 | }; |
| 29 | |
| 30 | enum FileType |
| 31 | { |
no outgoing calls
no test coverage detected