----------------------------------------------------------------------------- Get the location of a node -----------------------------------------------------------------------------
| 1226 | // Get the location of a node |
| 1227 | //----------------------------------------------------------------------------- |
| 1228 | string Manager::GetNodeLocation |
| 1229 | ( |
| 1230 | uint32 const _homeId, |
| 1231 | uint8 const _nodeId |
| 1232 | ) |
| 1233 | { |
| 1234 | if( Driver* driver = GetDriver( _homeId ) ) |
| 1235 | { |
| 1236 | return driver->GetNodeLocation( _nodeId ); |
| 1237 | } |
| 1238 | |
| 1239 | return "Unknown"; |
| 1240 | } |
| 1241 | |
| 1242 | //----------------------------------------------------------------------------- |
| 1243 | // <Manager::SetNodeManufacturerName> |
nothing calls this directly
no outgoing calls
no test coverage detected