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