----------------------------------------------------------------------------- Create the values managed by this command class -----------------------------------------------------------------------------
| 215 | // Create the values managed by this command class |
| 216 | //----------------------------------------------------------------------------- |
| 217 | void Version::CreateVars |
| 218 | ( |
| 219 | uint8 const _instance |
| 220 | ) |
| 221 | { |
| 222 | if( Node* node = GetNodeUnsafe() ) |
| 223 | { |
| 224 | node->CreateValueString( ValueID::ValueGenre_System, GetCommandClassId(), _instance, VersionIndex_Library, "Library Version", "", true, false, "Unknown", 0 ); |
| 225 | node->CreateValueString( ValueID::ValueGenre_System, GetCommandClassId(), _instance, VersionIndex_Protocol, "Protocol Version", "", true, false, "Unknown", 0 ); |
| 226 | node->CreateValueString( ValueID::ValueGenre_System, GetCommandClassId(), _instance, VersionIndex_Application, "Application Version", "", true, false, "Unknown", 0 ); |
| 227 | } |
| 228 | } |
nothing calls this directly
no test coverage detected