| 239 | this->Prefixes.begin(); |
| 240 | } |
| 241 | size_type GetSuffixIndex(std::string const& suffix) |
| 242 | { |
| 243 | return std::find(this->Suffixes.begin(), this->Suffixes.end(), suffix) - |
| 244 | this->Suffixes.begin(); |
| 245 | } |
| 246 | bool HasValidSuffix(std::string const& name); |
| 247 | void AddName(std::string const& name); |
| 248 | void SetName(std::string const& name); |
no test coverage detected