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

Method IsMultiInstance

cpp/src/Manager.cpp:3851–3863  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Returns true is group supports multi instance. -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

3849// Returns true is group supports multi instance.
3850//-----------------------------------------------------------------------------
3851bool Manager::IsMultiInstance
3852(
3853 uint32 const _homeId,
3854 uint8 const _nodeId,
3855 uint8 const _groupIdx
3856)
3857{
3858 if( Driver* driver = GetDriver( _homeId ) )
3859 {
3860 return driver->IsMultiInstance( _nodeId, _groupIdx );
3861 }
3862 return 0;
3863}
3864
3865//-----------------------------------------------------------------------------
3866// <Manager::GetGroupLabel>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected