MCPcopy Create free account
hub / github.com/cutechess/cutechess / EngineProcess

Method EngineProcess

projects/lib/src/engineprocess_win.cpp:30–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28QMutex EngineProcess::s_mutex;
29
30EngineProcess::EngineProcess(QObject* parent)
31 : QIODevice(parent),
32 m_started(false),
33 m_finished(false),
34 m_exitCode(0),
35 m_exitStatus(EngineProcess::NormalExit),
36 m_stdErrFileMode(Truncate),
37 m_inWrite(INVALID_HANDLE_VALUE),
38 m_outRead(INVALID_HANDLE_VALUE),
39 m_errRead(INVALID_HANDLE_VALUE),
40 m_reader(0)
41{
42}
43
44EngineProcess::~EngineProcess()
45{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected