| 289 | namespace |
| 290 | { |
| 291 | void DeleteCategoryFiles(vector<string> const & arrFiles) |
| 292 | { |
| 293 | string const path = GetBookmarksDirectory(); |
| 294 | string const extension = ".kmb"; |
| 295 | for (auto const & fileName : arrFiles) |
| 296 | FileWriter::DeleteFileX(base::JoinPath(path, fileName + extension)); |
| 297 | } |
| 298 | |
| 299 | UserMark const * GetMark(Framework & fm, m2::PointD const & pt) |
| 300 | { |
no test coverage detected