----------------------------------------------------------------------------- Retrieve MetaData about a Node. -----------------------------------------------------------------------------
| 7584 | // Retrieve MetaData about a Node. |
| 7585 | //----------------------------------------------------------------------------- |
| 7586 | string const Driver::GetMetaData |
| 7587 | ( |
| 7588 | uint8 const _nodeId, |
| 7589 | Node::MetaDataFields _metadata |
| 7590 | ) |
| 7591 | { |
| 7592 | LockGuard LG(m_nodeMutex); |
| 7593 | Node* node = GetNode( _nodeId ); |
| 7594 | if( node != NULL ) |
| 7595 | { |
| 7596 | return node->GetMetaData( _metadata ); |
| 7597 | } |
| 7598 | return ""; |
| 7599 | } |
| 7600 | |
| 7601 | //----------------------------------------------------------------------------- |
| 7602 | // <Manager::GetMetaData> |
nothing calls this directly
no outgoing calls
no test coverage detected