----------------------------------------------------------------------------- Retrieve ChangeLog of a Configuration File about a Node. -----------------------------------------------------------------------------
| 5329 | // Retrieve ChangeLog of a Configuration File about a Node. |
| 5330 | //----------------------------------------------------------------------------- |
| 5331 | Node::ChangeLogEntry const Manager::GetChangeLog |
| 5332 | ( |
| 5333 | uint32 const _homeId, |
| 5334 | uint8 const _nodeId, |
| 5335 | uint32_t revision |
| 5336 | ) |
| 5337 | { |
| 5338 | if( Driver* driver = GetDriver( _homeId ) ) |
| 5339 | { |
| 5340 | return driver->GetChangeLog( _nodeId, revision ); |
| 5341 | } |
| 5342 | Node::ChangeLogEntry cle; |
| 5343 | cle.revision = -1; |
| 5344 | return cle; |
| 5345 | } |
| 5346 | |
| 5347 | |
| 5348 | //----------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected