mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
17 lines
422 B
C++
17 lines
422 B
C++
|
#include <iostream>
|
||
|
#include <boost/python.hpp>
|
||
|
|
||
|
void __declspec(dllimport) ExportNetgenMeshing();
|
||
|
void __declspec(dllimport) ExportMeshVis();
|
||
|
void __declspec(dllimport) ExportCSG();
|
||
|
void __declspec(dllimport) ExportCSGVis();
|
||
|
void __declspec(dllimport) ExportGeom2d();
|
||
|
|
||
|
BOOST_PYTHON_MODULE(nglib)
|
||
|
{
|
||
|
ExportCSG();
|
||
|
ExportCSGVis();
|
||
|
ExportNetgenMeshing();
|
||
|
ExportMeshVis();
|
||
|
ExportGeom2d();
|
||
|
}
|