| 203 | } |
| 204 | |
| 205 | void MemoryView::addReadMemoryCommand(const QString& arguments) |
| 206 | { |
| 207 | auto* const session = currentSessionWithStartedApp(); |
| 208 | if (!session) return; |
| 209 | |
| 210 | session->addCommandWithCurrentSessionHandler(MI::DataReadMemory, arguments, this, &MemoryView::memoryRead); |
| 211 | } |
| 212 | |
| 213 | void MemoryView::memoryRead(const MI::ResultRecord& r) |
| 214 | { |
nothing calls this directly
no test coverage detected