----------------------------------------------------------------------------- Get the generic type of a node -----------------------------------------------------------------------------
| 4859 | // Get the generic type of a node |
| 4860 | //----------------------------------------------------------------------------- |
| 4861 | uint8 Driver::GetNodeGeneric |
| 4862 | ( |
| 4863 | uint8 const _nodeId |
| 4864 | ) |
| 4865 | { |
| 4866 | uint8 genericType = 0; |
| 4867 | LockGuard LG(m_nodeMutex); |
| 4868 | if( Node* node = GetNode( _nodeId ) ) |
| 4869 | { |
| 4870 | genericType = node->GetGeneric(); |
| 4871 | } |
| 4872 | |
| 4873 | return genericType; |
| 4874 | } |
| 4875 | |
| 4876 | //----------------------------------------------------------------------------- |
| 4877 | // <Driver::GetNodeSpecific> |
nothing calls this directly
no test coverage detected