| 1299 | } |
| 1300 | |
| 1301 | bool Map::isColorUsedByASymbol(const MapColor* color) const |
| 1302 | { |
| 1303 | for (const Symbol* symbol : symbols) |
| 1304 | { |
| 1305 | if (symbol->containsColor(color)) |
| 1306 | return true; |
| 1307 | } |
| 1308 | return false; |
| 1309 | } |
| 1310 | |
| 1311 | void Map::determineColorsInUse(const std::vector< bool >& by_which_symbols, std::vector< bool >& out) const |
| 1312 | { |
no test coverage detected