----------------------------------------------------------------------------- Is the Node Reset? -----------------------------------------------------------------------------
| 3875 | // Is the Node Reset? |
| 3876 | //----------------------------------------------------------------------------- |
| 3877 | bool Node::IsNodeReset() |
| 3878 | { |
| 3879 | DeviceResetLocally *drl = static_cast<DeviceResetLocally *>(GetCommandClass(DeviceResetLocally::StaticGetCommandClassId())); |
| 3880 | if (drl) |
| 3881 | return drl->IsDeviceReset(); |
| 3882 | else return false; |
| 3883 | |
| 3884 | |
| 3885 | } |
| 3886 | |
| 3887 | |
| 3888 | //----------------------------------------------------------------------------- |
no test coverage detected