mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-24 07:55:35 +08:00
committed by
Mathew Sutcliffe
parent
0eaab1753d
commit
aafe211b5c
@@ -83,4 +83,18 @@ namespace BlackCore
|
||||
return m_info.toQString();
|
||||
}
|
||||
|
||||
void ISimulatorListener::start()
|
||||
{
|
||||
if (m_isRunning) { return; }
|
||||
m_isRunning = true;
|
||||
startImpl();
|
||||
}
|
||||
|
||||
void ISimulatorListener::stop()
|
||||
{
|
||||
if(!m_isRunning) { return; }
|
||||
stopImpl();
|
||||
m_isRunning = false;
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
Reference in New Issue
Block a user