MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / GetChangeLog

Method GetChangeLog

cpp/src/Manager.cpp:5331–5345  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Retrieve ChangeLog of a Configuration File about a Node. -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

5329// Retrieve ChangeLog of a Configuration File about a Node.
5330//-----------------------------------------------------------------------------
5331Node::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//-----------------------------------------------------------------------------

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected