| 50 | } |
| 51 | |
| 52 | std::unique_ptr< RegularGrid< 2 > > RegularGrid< 2 >::clone() const |
| 53 | { |
| 54 | auto clone = create( this->impl_name() ); |
| 55 | auto builder = RegularGridBuilder< 2 >::create( *clone ); |
| 56 | builder->copy_identifier( *this ); |
| 57 | builder->copy( *this ); |
| 58 | return clone; |
| 59 | } |
| 60 | |
| 61 | AttributeManager& RegularGrid< 2 >::cell_attribute_manager() const |
| 62 | { |
nothing calls this directly
no test coverage detected