Wildmeshing Toolkit
Mappable.hpp
Go to the documentation of this file.
1 #pragma once
2 namespace wmtk {
3  class Mesh;
4 }
5 
6 namespace wmtk::multimesh {
7 
8  class Mappable {
9  public:
10  virtual const Mesh& mesh() const = 0;
11  };
12 }
virtual const Mesh & mesh() const =0
Definition: Accessor.hpp:6