| 1555 | } |
| 1556 | |
| 1557 | std::string Workspace_Impl::nextName(const std::string& name, bool fillIn) const { |
| 1558 | if (m_fastNaming) { |
| 1559 | return toString(createUUID()); |
| 1560 | } |
| 1561 | |
| 1562 | WorkspaceObjectVector objectsInSeries = getObjectsByName(name, false); |
| 1563 | return constructNextName(name, objectsInSeries, fillIn); |
| 1564 | } |
| 1565 | |
| 1566 | std::string Workspace_Impl::nextName(const IddObjectType& iddObjectType, bool fillIn) const { |
| 1567 | if (m_fastNaming) { |