| 58 | |
| 59 | |
| 60 | Ref<BinaryView> DebuggerController::GetData() |
| 61 | { |
| 62 | BNBinaryView* view = BNDebuggerGetData(m_object); |
| 63 | if (!view) |
| 64 | return nullptr; |
| 65 | return new BinaryView(view); |
| 66 | } |
| 67 | |
| 68 | |
| 69 | void DebuggerController::SetData(const Ref<BinaryView>& data) |
no test coverage detected