| 44 | namespace oid { |
| 45 | |
| 46 | enum 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 |
| 63 | template <typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected