| 224 | //----------------------------------------------------------------------------- |
| 225 | |
| 226 | string CommandClass::GetInstanceLabel |
| 227 | ( |
| 228 | uint8 const _instance |
| 229 | ) |
| 230 | { |
| 231 | if ( m_instanceLabel.count(_instance) ) |
| 232 | { |
| 233 | return Localization::Get()->GetGlobalLabel(m_instanceLabel[_instance]); |
| 234 | } |
| 235 | return string(); |
| 236 | } |
| 237 | |
| 238 | //----------------------------------------------------------------------------- |
| 239 | // <CommandClass::ReadXML> |
nothing calls this directly
no test coverage detected