| 269 | */ |
| 270 | template <typename Container> |
| 271 | void CellTypes(Container& cellTypes) const |
| 272 | { |
| 273 | for (const auto& entry : this->Cells) |
| 274 | { |
| 275 | cellTypes.insert(cellTypes.end(), entry.first); |
| 276 | } |
| 277 | } |
| 278 | template <typename Container> |
| 279 | Container CellTypes() const |
| 280 | { |