----------------------------------------------------------------------------- Get the specific type of a node -----------------------------------------------------------------------------
| 4878 | // Get the specific type of a node |
| 4879 | //----------------------------------------------------------------------------- |
| 4880 | uint8 Driver::GetNodeSpecific |
| 4881 | ( |
| 4882 | uint8 const _nodeId |
| 4883 | ) |
| 4884 | { |
| 4885 | uint8 specific = 0; |
| 4886 | LockGuard LG(m_nodeMutex); |
| 4887 | if( Node* node = GetNode( _nodeId ) ) |
| 4888 | { |
| 4889 | specific = node->GetSpecific(); |
| 4890 | } |
| 4891 | |
| 4892 | return specific; |
| 4893 | } |
| 4894 | |
| 4895 | //----------------------------------------------------------------------------- |
| 4896 | // <Driver::GetNodeType> |
nothing calls this directly
no test coverage detected