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

Method GetChangeLog

cpp/src/Node.cpp:4012–4023  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Get MetaData about a node -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

4010// Get MetaData about a node
4011//-----------------------------------------------------------------------------
4012Node::ChangeLogEntry const Node::GetChangeLog
4013(
4014 uint32_t revision
4015)
4016{
4017 if (this->m_changeLog.find(revision) != this->m_changeLog.end()) {
4018 return this->m_changeLog[revision];
4019 }
4020 ChangeLogEntry cle;
4021 cle.revision = -1;
4022 return cle;
4023}
4024
4025//-----------------------------------------------------------------------------
4026// <Node::GetMetaDataId>

Callers

nothing calls this directly

Calls 2

findMethod · 0.80
endMethod · 0.45

Tested by

no test coverage detected