iOS: Add UI for simulator device management

UI under devices tab to enable iOS simulator device management

Task-number: QTCREATORBUG-17602
Change-Id: I66dbf57f07dac107c253518ded5ffd78b8ce4555
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Vikas Pachdha
2017-01-27 11:00:20 +01:00
parent 4ab18cde0e
commit 18638d5560
17 changed files with 1386 additions and 65 deletions

View File

@@ -574,5 +574,14 @@ QDebug &operator<<(QDebug &stream, const SimulatorInfo &info)
return stream;
}
bool SimulatorInfo::operator==(const SimulatorInfo &other) const
{
return identifier == other.identifier
&& state == other.state
&& name == other.name
&& available == other.available
&& runtimeName == other.runtimeName;
}
} // namespace Internal
} // namespace Ios