forked from qt-creator/qt-creator
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user