Enmesh
Loading...
Searching...
No Matches
loadMsh.h
1#ifndef LOAD_MSH_H
2#define LOAD_MSH_H
3
4#include "mesh/mesh.h"
5
6
7namespace Enmesh {
8
17template <typename T>
18bool loadMsh(Mesh<T>& mesh, const std::string& path);
19
20} // namespace Enmesh
21
22
23#include "../../src/io/loadMsh.tpp"
24
25#endif
A class representing a 3D mesh.
Definition mesh.h:29