| 58 | } |
| 59 | |
| 60 | bool LoadTileProfiles(std::string const & fileName, std::set<std::string> & profileNames) |
| 61 | { |
| 62 | std::ifstream fin(fileName); |
| 63 | if (!fin) |
| 64 | return false; |
| 65 | std::string line; |
| 66 | while (std::getline(fin, line)) |
| 67 | if (!line.empty()) |
| 68 | profileNames.insert(line); |
| 69 | return true; |
| 70 | } |
| 71 | |
| 72 | class SrtmProvider : public ValuesProvider<Altitude> |
| 73 | { |
no test coverage detected