----------------------------------------------------------------------------- Retrieve driver based counters. -----------------------------------------------------------------------------
| 5241 | // Retrieve driver based counters. |
| 5242 | //----------------------------------------------------------------------------- |
| 5243 | void Manager::GetNodeStatistics |
| 5244 | ( |
| 5245 | uint32 const _homeId, |
| 5246 | uint8 const _nodeId, |
| 5247 | Node::NodeData* _data |
| 5248 | ) |
| 5249 | { |
| 5250 | if( Driver* driver = GetDriver( _homeId ) ) |
| 5251 | { |
| 5252 | driver->GetNodeStatistics( _nodeId, _data ); |
| 5253 | } |
| 5254 | |
| 5255 | } |
| 5256 | |
| 5257 | //----------------------------------------------------------------------------- |
| 5258 | // <Manager::GetNodeRouteScheme> |
nothing calls this directly
no outgoing calls
no test coverage detected