]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
continue
authorAnthony Geay <anthony.geay@edf.fr>
Fri, 15 Dec 2017 15:26:31 +0000 (16:26 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Fri, 15 Dec 2017 15:26:31 +0000 (16:26 +0100)
src/MEDCoupling_Swig/MEDCoupling.i
src/MEDPartitioner_Swig/MEDPartitioner.i
src/MEDPartitioner_Swig/MEDPartitionerCommon.i
src/PyWrapping/CMakeLists.txt

index ed247753c00506303399307618094c0171ef7c97..17dc3516f4d4fa59d2aceed7bd5165fe79eea5e2 100644 (file)
@@ -19,7 +19,7 @@
 
 %module MEDCoupling
 
-%include "MEDCouplingImpl.i"
+%include "MEDCouplingCommon.i"
 
 %pythoncode %{
 def MEDCouplingDataArrayDoubleIadd(self,*args):
index 4bd1dbc4fcebc4f805783e1fd0c35a7f3e66cd17..9460fe8c6a25001b2712d80c3a285026f30d7625 100644 (file)
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
+%module MEDPartitioner
+
+%{
+#include "MEDFileData.hxx"
+
+using namespace MEDCoupling;
+using namespace INTERP_KERNEL;
+%}
+
+%feature("autodoc", "1");
+%feature("docstring");
+
+%feature("unref") MEDCoupling::MEDFileData "$this->decrRef();"
+
+%nodefaultctor;
+
+%rename (InterpKernelException) INTERP_KERNEL::Exception;
+
 %include "MEDPartitionerCommon.i"
 
index a9060838c1071fcc9be1dc6bcc8ce799a5596975..e67c75f896677dd28951154d7e7e97cfde1ab35e 100644 (file)
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
-%module MEDPartitioner
-
-%include std_string.i
-
 %{
-#include "MEDFileData.hxx"
-
 #include "MEDPARTITIONER_MEDPartitioner.hxx"
 #include "MEDPARTITIONER.hxx"
 #include "MEDPARTITIONER_Graph.hxx"
 
-using namespace MEDCoupling;
-using namespace INTERP_KERNEL;
 using namespace MEDPARTITIONER;
 %}
 
-%feature("autodoc", "1");
-%feature("docstring");
-
 %newobject MEDPARTITIONER::MEDPartitioner::New;
 %newobject MEDPARTITIONER::MEDPartitioner::Graph;
 %newobject MEDPARTITIONER::MEDPartitioner::Graph::getGraph;
 %newobject MEDPARTITIONER::MEDPartitioner::Graph::getPartition;
 %newobject MEDPARTITIONER::MEDPartitioner::getMEDFileData;
-%feature("unref") MEDCoupling::MEDFileData "$this->decrRef();"
-
-%nodefaultctor;
-
-%rename (InterpKernelException) INTERP_KERNEL::Exception;
 
 namespace MEDPARTITIONER
 {
index f48ff3eb85a56b2a45bd9b8f686bd1c76447cb10..6e6ceb6f5b20e55c194de391fd1104db80bc32e5 100644 (file)
@@ -74,6 +74,10 @@ IF(MEDCOUPLING_ENABLE_RENUMBER)
   
 ENDIF(MEDCOUPLING_ENABLE_RENUMBER)
 
+IF(MEDCOUPLING_ENABLE_PARTITIONER)
+  
+ENDIF(MEDCOUPLING_ENABLE_PARTITIONER)
+
 SWIG_ADD_MODULE(medcoupling python medcoupling.i)
 SWIG_LINK_LIBRARIES(medcoupling ${medcoupling_LIB_dependancies})
 SWIG_CHECK_GENERATION(medcoupling)