| 17 | struct OSRMLockFile |
| 18 | { |
| 19 | OSRMLockFile(const ProjID proj_id) |
| 20 | { |
| 21 | std::filesystem::path filename = |
| 22 | std::filesystem::path("osrm-" + std::to_string(proj_id) + ".lock"); |
| 23 | lock_file = getLockDir() / filename; |
| 24 | } |
| 25 | const std::filesystem::path to_path() { return lock_file; } |
| 26 | operator const std::filesystem::path::value_type *() const noexcept |
| 27 | { |
nothing calls this directly
no test coverage detected