----------------------------------------------------------------------------- Get the product name of a node -----------------------------------------------------------------------------
| 1190 | // Get the product name of a node |
| 1191 | //----------------------------------------------------------------------------- |
| 1192 | string Manager::GetNodeProductName |
| 1193 | ( |
| 1194 | uint32 const _homeId, |
| 1195 | uint8 const _nodeId |
| 1196 | ) |
| 1197 | { |
| 1198 | if( Driver* driver = GetDriver( _homeId ) ) |
| 1199 | { |
| 1200 | return driver->GetNodeProductName( _nodeId ); |
| 1201 | } |
| 1202 | |
| 1203 | return "Unknown"; |
| 1204 | } |
| 1205 | |
| 1206 | //----------------------------------------------------------------------------- |
| 1207 | // <Manager::GetNodeName> |
nothing calls this directly
no outgoing calls
no test coverage detected