----------------------------------------------------------------------------- Set Latest Config File Revision -----------------------------------------------------------------------------
| 3960 | // Set Latest Config File Revision |
| 3961 | //----------------------------------------------------------------------------- |
| 3962 | void Node::setLatestConfigRevision |
| 3963 | ( |
| 3964 | uint32 rev |
| 3965 | ) |
| 3966 | { |
| 3967 | m_latestConfigRevision = rev; |
| 3968 | ManufacturerSpecific* cc = static_cast<ManufacturerSpecific*>( GetCommandClass( ManufacturerSpecific::StaticGetCommandClassId() ) ); |
| 3969 | if( cc ) |
| 3970 | { |
| 3971 | cc->setLatestConfigRevision(rev); |
| 3972 | } |
| 3973 | } |
| 3974 | |
| 3975 | |
| 3976 | //----------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected