----------------------------------------------------------------------------- Gets the label for a particular group -----------------------------------------------------------------------------
| 3867 | // Gets the label for a particular group |
| 3868 | //----------------------------------------------------------------------------- |
| 3869 | string Manager::GetGroupLabel |
| 3870 | ( |
| 3871 | uint32 const _homeId, |
| 3872 | uint8 const _nodeId, |
| 3873 | uint8 const _groupIdx |
| 3874 | ) |
| 3875 | { |
| 3876 | if( Driver* driver = GetDriver( _homeId ) ) |
| 3877 | { |
| 3878 | return driver->GetGroupLabel( _nodeId, _groupIdx ); |
| 3879 | } |
| 3880 | |
| 3881 | return ""; |
| 3882 | } |
| 3883 | |
| 3884 | //----------------------------------------------------------------------------- |
| 3885 | // <Manager::AddAssociation> |
nothing calls this directly
no outgoing calls
no test coverage detected