mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
12 lines
510 B
C++
12 lines
510 B
C++
#include <meshing.hpp>
|
|
#include "writeuser.hpp"
|
|
|
|
namespace netgen
|
|
{
|
|
DLL_HEADER void ReadMeditFormat (Mesh & mesh, const filesystem::path & filename, map<tuple<int, int>, int> & index_map);
|
|
DLL_HEADER void ReadMeditFormat (Mesh & mesh, const filesystem::path & filename);
|
|
|
|
DLL_HEADER void WriteMeditFormat (const Mesh & mesh, const filesystem::path & filename, map<tuple<int,int>, int> & index_map);
|
|
DLL_HEADER void WriteMeditFormat (const Mesh & mesh, const filesystem::path & filename);
|
|
} // namespace netgen
|