----------------------------------------------------------------------------- Helper to create a ValueID -----------------------------------------------------------------------------
| 2401 | // Helper to create a ValueID |
| 2402 | //----------------------------------------------------------------------------- |
| 2403 | ValueID Node::CreateValueID |
| 2404 | ( |
| 2405 | ValueID::ValueGenre const _genre, |
| 2406 | uint8 const _commandClassId, |
| 2407 | uint8 const _instance, |
| 2408 | uint16 const _valueIndex, |
| 2409 | ValueID::ValueType const _type |
| 2410 | ) |
| 2411 | { |
| 2412 | return ValueID( m_homeId, m_nodeId, _genre, _commandClassId, _instance, _valueIndex, _type ); |
| 2413 | } |
| 2414 | |
| 2415 | //----------------------------------------------------------------------------- |
| 2416 | // <Node::CreateValueBitSet> |