* @brief Locates a workspace by id in ProjectModel's list. */
| 45 | * @brief Locates a workspace by id in ProjectModel's list. |
| 46 | */ |
| 47 | [[nodiscard]] static auto findWorkspace(const std::vector<DataModel::Workspace>& ws, int wid) |
| 48 | { |
| 49 | return std::find_if(ws.begin(), ws.end(), [wid](const auto& w) { return w.workspaceId == wid; }); |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * @brief Returns true when the project model is in ProjectFile mode and ready |