| 4913 | |
| 4914 | |
| 4915 | bool Driver::IsNodeZWavePlus |
| 4916 | ( |
| 4917 | uint8 const _nodeId |
| 4918 | ) |
| 4919 | { |
| 4920 | LockGuard LG(m_nodeMutex); |
| 4921 | if( Node* node = GetNode( _nodeId ) ) |
| 4922 | { |
| 4923 | return node->IsNodeZWavePlus(); |
| 4924 | } |
| 4925 | return false; |
| 4926 | } |
| 4927 | |
| 4928 | |
| 4929 | //----------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected