| 166 | Graph::~Graph() = default; |
| 167 | |
| 168 | std::unique_ptr< Graph > Graph::create() |
| 169 | { |
| 170 | return MeshFactory::create_default_mesh< Graph >( |
| 171 | Graph::type_name_static() ); |
| 172 | } |
| 173 | |
| 174 | std::unique_ptr< Graph > Graph::create( const MeshImpl& impl ) |
| 175 | { |
no outgoing calls