MCPcopy Create free account
hub / github.com/Norbyte/bg3se / DebugMessageHandler

Method DebugMessageHandler

BG3Extender/Osiris/Debugger/DebugMessages.cpp:8–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6namespace 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 {

Callers

nothing calls this directly

Calls 2

SetConnectHandlerMethod · 0.80
SetMessageHandlerMethod · 0.80

Tested by

no test coverage detected