----------------------------------------------------------------------------- Constructor -----------------------------------------------------------------------------
| 84 | // Constructor |
| 85 | //----------------------------------------------------------------------------- |
| 86 | MultiInstance::MultiInstance |
| 87 | ( |
| 88 | uint32 const _homeId, |
| 89 | uint8 const _nodeId |
| 90 | ): |
| 91 | CommandClass( _homeId, _nodeId ), |
| 92 | m_numEndPoints( 0 ) |
| 93 | { |
| 94 | m_com.EnableFlag(COMPAT_FLAG_MI_MAPROOTTOENDPOINT, false); |
| 95 | m_com.EnableFlag(COMPAT_FLAG_MI_FORCEUNIQUEENDPOINTS, false); |
| 96 | m_com.EnableFlag(COMPAT_FLAG_MI_IGNMCCAPREPORTS, false); |
| 97 | m_com.EnableFlag(COMPAT_FLAG_MI_ENDPOINTHINT, 0); |
| 98 | } |
| 99 | |
| 100 | //----------------------------------------------------------------------------- |
| 101 | // <MultiInstance::RequestInstances> |
nothing calls this directly
no test coverage detected