----------------------------------------------------------------------------- Update the mapped class if there is one with BASIC level -----------------------------------------------------------------------------
| 733 | // Update the mapped class if there is one with BASIC level |
| 734 | //----------------------------------------------------------------------------- |
| 735 | void CommandClass::UpdateMappedClass |
| 736 | ( |
| 737 | uint8 const _instance, |
| 738 | uint8 const _classId, |
| 739 | uint8 const _level |
| 740 | ) |
| 741 | { |
| 742 | if( _classId ) |
| 743 | { |
| 744 | if( Node* node = GetNodeUnsafe() ) |
| 745 | { |
| 746 | CommandClass* cc = node->GetCommandClass( _classId ); |
| 747 | if( cc != NULL ) |
| 748 | { |
| 749 | cc->SetValueBasic( _instance, _level ); |
| 750 | } |
| 751 | } |
| 752 | } |
| 753 | } |
| 754 | |
| 755 | //----------------------------------------------------------------------------- |
| 756 | // <CommandClass::ClearStaticRequest> |
nothing calls this directly
no test coverage detected