----------------------------------------------------------------------------- Gets the maximum number of associations for a group -----------------------------------------------------------------------------
| 3830 | // Gets the maximum number of associations for a group |
| 3831 | //----------------------------------------------------------------------------- |
| 3832 | uint8 Manager::GetMaxAssociations |
| 3833 | ( |
| 3834 | uint32 const _homeId, |
| 3835 | uint8 const _nodeId, |
| 3836 | uint8 const _groupIdx |
| 3837 | ) |
| 3838 | { |
| 3839 | if( Driver* driver = GetDriver( _homeId ) ) |
| 3840 | { |
| 3841 | return driver->GetMaxAssociations( _nodeId, _groupIdx ); |
| 3842 | } |
| 3843 | |
| 3844 | return 0; |
| 3845 | } |
| 3846 | |
| 3847 | //----------------------------------------------------------------------------- |
| 3848 | // <Manager::IsMultiInstance> |
nothing calls this directly
no outgoing calls
no test coverage detected