| 450 | } |
| 451 | |
| 452 | string Classificator::GetReadableObjectName(uint32_t type) const |
| 453 | { |
| 454 | string s = GetFullObjectName(type); |
| 455 | // Remove ending dummy symbol. |
| 456 | ASSERT(!s.empty(), ()); |
| 457 | s.pop_back(); |
| 458 | // Replace separator. |
| 459 | replace(s.begin(), s.end(), '|', '-'); |
| 460 | return s; |
| 461 | } |