| 522 | |
| 523 | |
| 524 | std::string DebuggerController::GetWorkingDirectory() |
| 525 | { |
| 526 | char* path = BNDebuggerGetWorkingDirectory(m_object); |
| 527 | if (!path) |
| 528 | return ""; |
| 529 | |
| 530 | std::string result = path; |
| 531 | BNDebuggerFreeString(path); |
| 532 | return result; |
| 533 | } |
| 534 | |
| 535 | |
| 536 | bool DebuggerController::GetRequestTerminalEmulator() |
no test coverage detected