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