X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FCollectionAPI%2FCollectionAPI.i;h=821bcd33cf94393e6372d3fe70609ac1d7dab21f;hb=88c4a5c85a8d2cfab598c69882b9ceae15507123;hp=0fbf143e00f6014bddcfe5260af0297efc7b3f6d;hpb=1c292b5bf95e18a6c8fbe407c532213e10c673c5;p=modules%2Fshaper.git diff --git a/src/CollectionAPI/CollectionAPI.i b/src/CollectionAPI/CollectionAPI.i index 0fbf143e0..821bcd33c 100644 --- a/src/CollectionAPI/CollectionAPI.i +++ b/src/CollectionAPI/CollectionAPI.i @@ -1,3 +1,23 @@ +// Copyright (C) 2014-2017 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 +// 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 +// + /* CollectionAPI.i */ %module CollectionAPI @@ -10,10 +30,18 @@ #include "CollectionAPI.h" #include "CollectionAPI_Group.h" + #include "CollectionAPI_Field.h" #endif // CollectionAPI_swig_H_ %} +%{ + #include "ModelHighAPI_swig.h" + + // fix for SWIG v2.0.4 + #define SWIGPY_SLICE_ARG(obj) ((PySliceObject*)(obj)) +%} + %include "doxyhelp.i" // import other modules @@ -24,10 +52,23 @@ // standard definitions %include "typemaps.i" +%include "std_list.i" +%include "std_string.i" %include "std_shared_ptr.i" +%template(StringList) std::list; +%template(IntegerList) std::list; +%template(DoubleList) std::list; +%template(BooleanList) std::list; +%template(StringListList) std::list >; +%template(IntegerListList) std::list >; +%template(DoubleListList) std::list >; +%template(BooleanListList) std::list >; + // shared pointers %shared_ptr(CollectionAPI_Group) +%shared_ptr(CollectionAPI_Field) // all supported interfaces %include "CollectionAPI_Group.h" +%include "CollectionAPI_Field.h"