| 49 | |
| 50 | |
| 51 | Ref<BinaryView> DebuggerController::GetLiveView() |
| 52 | { |
| 53 | BNBinaryView* view = BNDebuggerGetLiveView(m_object); |
| 54 | if (!view) |
| 55 | return nullptr; |
| 56 | return new BinaryView(view); |
| 57 | } |
| 58 | |
| 59 | |
| 60 | Ref<BinaryView> DebuggerController::GetData() |
no test coverage detected