MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / GetGroupLabel

Method GetGroupLabel

cpp/src/Manager.cpp:3869–3882  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Gets the label for a particular group -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

3867// Gets the label for a particular group
3868//-----------------------------------------------------------------------------
3869string 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>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected