| 61 | |
| 62 | void AddName(std::string const& name) { this->Names.push_back(name); } |
| 63 | void SetName(std::string const& name) |
| 64 | { |
| 65 | this->Names.clear(); |
| 66 | this->AddName(name); |
| 67 | } |
| 68 | bool CheckCompoundNames() |
| 69 | { |
| 70 | return std::any_of(this->Names.begin(), this->Names.end(), |
no test coverage detected