-------------------------------------------------------------------------
| 41 | |
| 42 | //------------------------------------------------------------------------- |
| 43 | struct Debugger::ProcessStatus |
| 44 | { |
| 45 | ProcessStatus() = default; |
| 46 | |
| 47 | ProcessStatus( |
| 48 | boost::optional<int> exitCode, |
| 49 | boost::optional<DWORD> continueStatus) |
| 50 | : exitCode_{ exitCode } |
| 51 | , continueStatus_{ continueStatus } |
| 52 | { |
| 53 | } |
| 54 | |
| 55 | boost::optional<int> exitCode_; |
| 56 | boost::optional<DWORD> continueStatus_; |
| 57 | }; |
| 58 | |
| 59 | //------------------------------------------------------------------------- |
| 60 | Debugger::Debugger( |
nothing calls this directly
no outgoing calls
no test coverage detected