| 37 | } |
| 38 | |
| 39 | template <typename OutIter> void List(const std::string &name_prefix, OutIter out) const |
| 40 | { |
| 41 | for (const auto ®ion : regions) |
| 42 | { |
| 43 | region.layout->List(name_prefix, out); |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | template <typename T> auto GetBlockPtr(const std::string &name) const |
| 48 | { |