----------------------------------------------------------------------------- Get the basic type of a node -----------------------------------------------------------------------------
| 1075 | // Get the basic type of a node |
| 1076 | //----------------------------------------------------------------------------- |
| 1077 | uint8 Manager::GetNodeBasic |
| 1078 | ( |
| 1079 | uint32 const _homeId, |
| 1080 | uint8 const _nodeId |
| 1081 | ) |
| 1082 | { |
| 1083 | uint8 basic = 0; |
| 1084 | if( Driver* driver = GetDriver( _homeId ) ) |
| 1085 | { |
| 1086 | basic = driver->GetNodeBasic( _nodeId ); |
| 1087 | } |
| 1088 | |
| 1089 | return basic; |
| 1090 | } |
| 1091 | |
| 1092 | //----------------------------------------------------------------------------- |
| 1093 | // <Manager::GetNodeGeneric> |
nothing calls this directly
no outgoing calls
no test coverage detected