MCPcopy Create free account
hub / github.com/OpenCppCoverage/OpenCppCoverage / Debugger::ProcessStatus

Class Debugger::ProcessStatus

CppCoverage/Debugger.cpp:43–57  ·  view source on GitHub ↗

-------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

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(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected