| 498 | |
| 499 | |
| 500 | std::string DebuggerController::GetInputFile() |
| 501 | { |
| 502 | char* path = BNDebuggerGetInputFile(m_object); |
| 503 | if (!path) |
| 504 | return ""; |
| 505 | |
| 506 | std::string result = path; |
| 507 | BNDebuggerFreeString(path); |
| 508 | return result; |
| 509 | } |
| 510 | |
| 511 | |
| 512 | std::string DebuggerController::GetExecutablePath() |
no test coverage detected