// Copyright (C) 2014-2023 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // /* ParametersAPI.i */ %module ParametersAPI %{ #include "ParametersAPI_swig.h" // fix for SWIG v4.1.1 #if PY_VERSION_HEX >= 0x03020000 # define SWIGPY_SLICEOBJECT PyObject #else # define SWIGPY_SLICEOBJECT PySliceObject #endif // fix for SWIG v2.0.4 #define SWIGPY_SLICE_ARG(obj) ((SWIGPY_SLICEOBJECT*)(obj)) #define SWIGPY_UNICODE_ARG(obj) ((PyObject*) (obj)) %} %include "doxyhelp.i" // import other modules %import "ModelHighAPI.i" // to avoid error on this #define PARAMETERSAPI_EXPORT // standard definitions %include "typemaps.i" %include "std_shared_ptr.i" // shared pointers %shared_ptr(ParametersAPI_Parameter) // exception handler %exception addParameter { try { $action } catch (const std::string& str) { PyErr_SetString(PyExc_SyntaxError, str.c_str()); return NULL; } } // all supported interfaces %include "ParametersAPI_Parameter.h"