| 510 | |
| 511 | |
| 512 | std::string DebuggerController::GetExecutablePath() |
| 513 | { |
| 514 | char* path = BNDebuggerGetExecutablePath(m_object); |
| 515 | if (!path) |
| 516 | return ""; |
| 517 | |
| 518 | std::string result = path; |
| 519 | BNDebuggerFreeString(path); |
| 520 | return result; |
| 521 | } |
| 522 | |
| 523 | |
| 524 | std::string DebuggerController::GetWorkingDirectory() |
no test coverage detected