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

Method GetChangeLog

cpp/src/Driver.cpp:7605–7620  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Retrieve MetaData about a Node. -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

7603// Retrieve MetaData about a Node.
7604//-----------------------------------------------------------------------------
7605Node::ChangeLogEntry const Driver::GetChangeLog
7606(
7607 uint8 const _nodeId,
7608 uint32_t revision
7609)
7610{
7611 LockGuard LG(m_nodeMutex);
7612 Node* node = GetNode( _nodeId );
7613 if( node != NULL )
7614 {
7615 return node->GetChangeLog( revision );
7616 }
7617 Node::ChangeLogEntry cle;
7618 cle.revision = -1;
7619 return cle;
7620}
7621
7622
7623ManufacturerSpecificDB *Driver::GetManufacturerSpecificDB

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected