----------------------------------------------------------------------------- Create the values managed by this command class -----------------------------------------------------------------------------
| 151 | // Create the values managed by this command class |
| 152 | //----------------------------------------------------------------------------- |
| 153 | void Language::CreateVars |
| 154 | ( |
| 155 | uint8 const _instance |
| 156 | ) |
| 157 | { |
| 158 | if( Node* node = GetNodeUnsafe() ) |
| 159 | { |
| 160 | node->CreateValueString( ValueID::ValueGenre_System, GetCommandClassId(), _instance, (uint8)LanguageIndex_Language, "Language", "", false, false, "", 0 ); |
| 161 | node->CreateValueString( ValueID::ValueGenre_System, GetCommandClassId(), _instance, (uint8)LanguageIndex_Country, "Country", "", false, false, "", 0 ); |
| 162 | } |
| 163 | } |
| 164 |
nothing calls this directly
no test coverage detected