----------------------------------------------------------------------------- Set Loaded Config File Revision -----------------------------------------------------------------------------
| 3922 | // Set Loaded Config File Revision |
| 3923 | //----------------------------------------------------------------------------- |
| 3924 | void Node::setFileConfigRevision |
| 3925 | ( |
| 3926 | uint32 rev |
| 3927 | ) |
| 3928 | { |
| 3929 | m_fileConfigRevision = rev; |
| 3930 | ManufacturerSpecific* cc = static_cast<ManufacturerSpecific*>( GetCommandClass( ManufacturerSpecific::StaticGetCommandClassId() ) ); |
| 3931 | if( cc ) |
| 3932 | { |
| 3933 | cc->setFileConfigRevision(rev); |
| 3934 | } |
| 3935 | /* check if this is the latest */ |
| 3936 | checkLatestConfigRevision(); |
| 3937 | } |
| 3938 | |
| 3939 | //----------------------------------------------------------------------------- |
| 3940 | // <Node::setLoadedConfigRevision> |
no outgoing calls
no test coverage detected