----------------------------------------------------------------------------- Get the manufacturer name of a node -----------------------------------------------------------------------------
| 1172 | // Get the manufacturer name of a node |
| 1173 | //----------------------------------------------------------------------------- |
| 1174 | string Manager::GetNodeManufacturerName |
| 1175 | ( |
| 1176 | uint32 const _homeId, |
| 1177 | uint8 const _nodeId |
| 1178 | ) |
| 1179 | { |
| 1180 | if( Driver* driver = GetDriver( _homeId ) ) |
| 1181 | { |
| 1182 | return driver->GetNodeManufacturerName( _nodeId ); |
| 1183 | } |
| 1184 | |
| 1185 | return "Unknown"; |
| 1186 | } |
| 1187 | |
| 1188 | //----------------------------------------------------------------------------- |
| 1189 | // <Manager::GetNodeProductName> |
nothing calls this directly
no outgoing calls
no test coverage detected