| 436 | } |
| 437 | |
| 438 | std::string Classificator::GetFullObjectName(uint32_t type) const |
| 439 | { |
| 440 | std::string res; |
| 441 | ForEachPathObject(type, [&res](ClassifObject const * p) { res = res + p->GetName() + '|'; }); |
| 442 | return res; |
| 443 | } |
| 444 | |
| 445 | std::vector<std::string> Classificator::GetFullObjectNamePath(uint32_t type) const |
| 446 | { |