X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfigAPI.i;h=5efdefab5133b79a0c053de8745fe3302909a43a;hb=627bd194613dfc2a237720c962f33c56d331766f;hp=deb262c363616f6a5fead39904eef1a410207b89;hpb=87b6a30a3afb8fb32e7e43ade8d9c947d9eb1684;p=modules%2Fshaper.git diff --git a/src/Config/ConfigAPI.i b/src/Config/ConfigAPI.i index deb262c36..5efdefab5 100644 --- a/src/Config/ConfigAPI.i +++ b/src/Config/ConfigAPI.i @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2019 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,10 +12,9 @@ // // 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 // /* Config.i */ @@ -29,6 +28,16 @@ #define CONFIG_EXPORT %include "typemaps.i" +%include "std_list.i" %include "std_string.i" +%include "std_vector.i" %include "Config_ModuleReader.h" +%include "Config_PropManager.h" +%include "Config_Prop.h" + +// std::list -> [] +%template(ListOfString) std::list< std::string >; +%template(listOfProp) std::list< Config_Prop* >; +// std::vector -> [] +%template(VectorOfInteger) std::vector;