MCPcopy Create free account
hub / github.com/OpenImageDebugger/OpenImageDebugger / MessageType

Enum MessageType

src/ipc/message_exchange.h:46–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44namespace oid {
45
46enum class MessageType {
47 GetObservedSymbols = 0,
48 GetObservedSymbolsResponse = 1,
49 SetAvailableSymbols = 2,
50 PlotBufferContents = 3,
51 PlotBufferRequest = 4,
52 ExportBufferRequest = 5,
53 ApplySessionState = 6,
54 SessionStateChanged = 7,
55 ExportSelectedBuffer = 8,
56 BufferRemoved = 9,
57 PlotBufferBegin = 10,
58 PlotBufferChunk = 11,
59 PlotBufferEnd = 12
60};
61
62// C++20 concept to replace SFINAE for primitive type checking
63template <typename T>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected