| 443 | } |
| 444 | |
| 445 | std::vector<std::string> Classificator::GetFullObjectNamePath(uint32_t type) const |
| 446 | { |
| 447 | std::vector<std::string> res; |
| 448 | ForEachPathObject(type, [&res](ClassifObject const * p) { res.push_back(p->GetName()); }); |
| 449 | return res; |
| 450 | } |
| 451 | |
| 452 | string Classificator::GetReadableObjectName(uint32_t type) const |
| 453 | { |
no test coverage detected