X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI.i;h=7c0466cdb0152f1ac71ea99f8dd0f5af10bec3b4;hb=d32b7de5f466bcf611537140d7410c2b5c151c3c;hp=6fd73dedba08d1c0fc98e94f641159c4fd032477;hpb=81cc2c23e3109a51d178e63fe5b8a0a4625287b6;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI.i b/src/ModelAPI/ModelAPI.i index 6fd73dedb..7c0466cdb 100644 --- a/src/ModelAPI/ModelAPI.i +++ b/src/ModelAPI/ModelAPI.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 +// + /* ModelAPI.i */ %module(directors="1") ModelAPI %feature("director:except") { @@ -135,10 +155,12 @@ // std::list -> [] %template(StringList) std::list; %template(ObjectList) std::list >; +%template(FeatureList) std::list >; %template(ResultList) std::list >; %template(DocumentList) std::list >; // std::set -> [] %template(AttributeSet) std::set >; +%template(FeatureSet) std::set >; // std::dynamic_pointer_cast template std::shared_ptr shared_ptr_cast(std::shared_ptr theObject); @@ -172,3 +194,9 @@ template std::shared_ptr shared_ptr_cast(std::shared_ptr %template(modelAPI_AttributeRefList) shared_ptr_cast; %template(modelAPI_AttributeRefAttrList) shared_ptr_cast; %template(modelAPI_AttributeTables) shared_ptr_cast; + +%template(PointList) std::list >; +%template(PointSet) std::set >; + +// Geometry casts +%template(shapeToEdge) shared_ptr_cast;