| 5103 | //----------------------------------------------------------------------------- |
| 5104 | |
| 5105 | string Driver::GetNodeDeviceTypeString |
| 5106 | ( |
| 5107 | uint8 const _nodeId |
| 5108 | ) |
| 5109 | { |
| 5110 | |
| 5111 | LockGuard LG(m_nodeMutex); |
| 5112 | if( Node* node = GetNode( _nodeId ) ) |
| 5113 | { |
| 5114 | return node->GetDeviceTypeString(); |
| 5115 | } |
| 5116 | |
| 5117 | return ""; // unknown |
| 5118 | } |
| 5119 | |
| 5120 | |
| 5121 |
nothing calls this directly
no test coverage detected