X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomDataAPI%2FGeomDataAPI.i;h=8e86c88d85b9d4395d5136a2510bbace00332fee;hb=4cb94080355bcda617d6560b14bb39619ba90a4a;hp=e46422fc49d1b95f6e6f50249a030dfe3a3983d3;hpb=7074394f8f08413d885f63be01df6bd5007b868c;p=modules%2Fshaper.git diff --git a/src/GeomDataAPI/GeomDataAPI.i b/src/GeomDataAPI/GeomDataAPI.i index e46422fc4..8e86c88d8 100644 --- a/src/GeomDataAPI/GeomDataAPI.i +++ b/src/GeomDataAPI/GeomDataAPI.i @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2022 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,16 +12,17 @@ // // 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 +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // /* GeomDataAPI.i */ %module GeomDataAPI %{ #include "GeomDataAPI_swig.h" + + #define SWIGPY_UNICODE_ARG(obj) ((PyObject*) (obj)) %} // import other modules @@ -41,13 +42,16 @@ %shared_ptr(GeomDataAPI_Point) %shared_ptr(GeomDataAPI_Dir) %shared_ptr(GeomDataAPI_Point2D) +%shared_ptr(GeomDataAPI_Point2DArray) // all supported interfaces %include "GeomDataAPI_Point.h" %include "GeomDataAPI_Dir.h" %include "GeomDataAPI_Point2D.h" +%include "GeomDataAPI_Point2DArray.h" template std::shared_ptr castTo(std::shared_ptr theObject); %template(geomDataAPI_Point) castTo; %template(geomDataAPI_Dir) castTo; %template(geomDataAPI_Point2D) castTo; +%template(geomDataAPI_Point2DArray) castTo;