| 243 | } |
| 244 | |
| 245 | void StatisticsType::setMappingValues(std::vector<QString> values) |
| 246 | { |
| 247 | // We assume linear increasing typed IDs |
| 248 | for (int i = 0; i < int(values.size()); i++) |
| 249 | this->valMap[i] = values[i]; |
| 250 | } |
| 251 | |
| 252 | QString StatisticsType::getMappedValue(int typeID) const |
| 253 | { |
no test coverage detected