// File : FrontTrack.i // Created : Fri Apr 28 17:36:20 2017 // Author : Edward AGAPOV (eap) %module FrontTrack %{ #include "FrontTrack.hxx" #include #include #include static PyObject* setOCCException(Standard_Failure& ex) { std::string msg(ex.DynamicType()->Name()); if ( ex.GetMessageString() && strlen( ex.GetMessageString() )) { msg += ": "; msg += ex.GetMessageString(); } PyErr_SetString(PyExc_Exception, msg.c_str() ); return NULL; } %} %exception { try { OCC_CATCH_SIGNALS; $action } catch (Standard_Failure& ex) { return setOCCException(ex); } catch (std::exception& ex) { PyErr_SetString(PyExc_Exception, ex.what() ); return NULL; } } %include %include %template(svec) std::vector; //%feature("autodoc", "1"); //%feature("docstring"); %include "FrontTrack.hxx"