Salome HOME
updated copyright message
[modules/shaper.git] / src / Config / ConfigAPI.i
index deb262c363616f6a5fead39904eef1a410207b89..d33878c632a871ce3ce9f02f003d99c873aba444 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// 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
 //
 // 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<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 /* Config.i */
 #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"
+%include "Config_ValidatorReader.h"
+%include "Config_XMLReader.h"
+
+// std::list -> []
+%template(ListOfString) std::list< std::string >;
+%template(listOfProp) std::list< Config_Prop* >;
+// std::vector -> []
+%template(VectorOfInteger) std::vector<int>;