| 905 | } |
| 906 | |
| 907 | Set BasicSetRepository::createSetFromIndices(const std::vector<Index>& indices) |
| 908 | { |
| 909 | QMutexLocker lock(m_mutex); |
| 910 | |
| 911 | if (indices.empty()) |
| 912 | return Set(); |
| 913 | |
| 914 | SetRepositoryAlgorithms alg(m_dataRepository, this); |
| 915 | |
| 916 | return Set(alg.setForIndices(indices.begin(), indices.end()), this); |
| 917 | } |
| 918 | |
| 919 | Set BasicSetRepository::createSet(Index i) |
| 920 | { |
nothing calls this directly
no test coverage detected