| 9 | namespace osidbg |
| 10 | { |
| 11 | DebugMessageHandler::DebugMessageHandler(DebugInterface & intf) |
| 12 | : intf_(intf) |
| 13 | { |
| 14 | intf_.SetMessageHandler( |
| 15 | std::bind(&DebugMessageHandler::HandleMessage, this, std::placeholders::_1), |
| 16 | std::bind(&DebugMessageHandler::HandleConnect, this), |
| 17 | std::bind(&DebugMessageHandler::HandleDisconnect, this)); |
| 18 | } |
| 19 | |
| 20 | void MakeMsgColumn(MsgTypedValue & msgTv, TypedValue const & tv) |
| 21 | { |
nothing calls this directly
no test coverage detected