----------------------------------------------------------------------------- Retrieve MetaData about a Node. -----------------------------------------------------------------------------
| 5311 | // Retrieve MetaData about a Node. |
| 5312 | //----------------------------------------------------------------------------- |
| 5313 | string const Manager::GetMetaData |
| 5314 | ( |
| 5315 | uint32 const _homeId, |
| 5316 | uint8 const _nodeId, |
| 5317 | Node::MetaDataFields _metadata |
| 5318 | ) |
| 5319 | { |
| 5320 | if( Driver* driver = GetDriver( _homeId ) ) |
| 5321 | { |
| 5322 | return driver->GetMetaData( _nodeId, _metadata ); |
| 5323 | } |
| 5324 | return ""; |
| 5325 | } |
| 5326 | |
| 5327 | //----------------------------------------------------------------------------- |
| 5328 | // <Manager::GetChangeLog> |
nothing calls this directly
no outgoing calls
no test coverage detected