| 20 | } |
| 21 | |
| 22 | void PrintPacketHeaderHandler::HandlePacket(const arm::pipe::Packet& packet) |
| 23 | { |
| 24 | std::stringstream ss; |
| 25 | ss << "Handler Received Outgoing Packet [" << packet.GetPacketFamily() << ":" << packet.GetPacketId() << "]"; |
| 26 | ss << " Length [" << packet.GetLength() << "]" << std::endl; |
| 27 | std::cout << ss.str() << std::endl; |
| 28 | }; |
| 29 | |
| 30 | } // namespace pipe |
| 31 |
nothing calls this directly
no test coverage detected