----------------------------------------------------------------------------- Get the user-editable string for location of the specified node Returns a copy of the string rather than a const ref for thread safety -----------------------------------------------------------------------------
| 5009 | // Returns a copy of the string rather than a const ref for thread safety |
| 5010 | //----------------------------------------------------------------------------- |
| 5011 | string Driver::GetNodeLocation |
| 5012 | ( |
| 5013 | uint8 const _nodeId |
| 5014 | ) |
| 5015 | { |
| 5016 | LockGuard LG(m_nodeMutex); |
| 5017 | if( Node* node = GetNode( _nodeId ) ) |
| 5018 | { |
| 5019 | return node->GetLocation(); |
| 5020 | } |
| 5021 | |
| 5022 | return ""; |
| 5023 | } |
| 5024 | |
| 5025 | //----------------------------------------------------------------------------- |
| 5026 | // <Driver::GetNodeManufacturerId> |
nothing calls this directly
no test coverage detected