#include <NCollection_Vector.hxx>
#include <LocalAnalysis_SurfaceContinuity.hxx>
+#include<array>
//==================================================================================================
static GProp_GProps props(const TopoDS_Shape& theShape)
// execute the dumped
PyGILState_STATE gstate = PyGILState_Ensure(); /* acquire python thread */
static char aReadMode[] = "r";
- FILE* PyFileObject = _Py_fopen(theFilename, aReadMode);
+ FILE* PyFileObject = fopen(theFilename, aReadMode);
PyRun_SimpleFileEx(PyFileObject, theFilename, 1);
PyGILState_Release(gstate); /* release python thread */