static
| 121 | |
| 122 | // static |
| 123 | LocalCountryFile LocalCountryFile::MakeTemporary(std::string const & fullPath) |
| 124 | { |
| 125 | auto name = fullPath; |
| 126 | base::GetNameFromFullPath(name); |
| 127 | base::GetNameWithoutExt(name); |
| 128 | |
| 129 | return LocalCountryFile(base::GetDirectory(fullPath), CountryFile(std::move(name)), 0 /* version */); |
| 130 | } |
| 131 | |
| 132 | std::string DebugPrint(LocalCountryFile const & file) |
| 133 | { |
nothing calls this directly
no test coverage detected