Salome HOME
Fix compilation problems
[modules/shaper.git] / src / ModelAPI / ModelAPI.i
index 61403edf66643f8052bee4eda00678c645211761..e5113a5c2fea4df2c8dcad75153abfaab8196014 100644 (file)
@@ -30,6 +30,9 @@
 
 %{
   #include "ModelAPI_swig.h"
+
+  // fix for SWIG v2.0.4
+  #define SWIGPY_SLICE_ARG(obj) ((PyObject*)(obj))
 %}
 
 // import other modules
 %shared_ptr(ModelAPI_ResultCompSolid)
 
 %typecheck(SWIG_TYPECHECK_POINTER) const ModelAPI_AttributeTables::Value {
-  $1 = (PyFloat_Check($input) || PyInt_Check($input) || PyLong_Check($input) || PyString_Check($input) || PyBool_Check($input)) ? 1 : 0;
+  $1 = (PyFloat_Check($input) || PyLong_Check($input) || PyUnicode_Check($input) || PyBool_Check($input)) ? 1 : 0;
 }
 
 // Tables Value reading as int, double, boolean or string
 %typemap(in) const ModelAPI_AttributeTables::Value {
-  if (PyInt_Check($input)) {
-    $1.myInt = int(PyInt_AsLong($input));
-    $1.myDouble = double(PyInt_AsLong($input));
-    $1.myBool = PyInt_AsLong($input) != 0;
+  if (PyLong_Check($input)) {
+    $1.myInt = int(PyLong_AsLong($input));
+    $1.myDouble = double(PyLong_AsLong($input));
+    $1.myBool = PyLong_AsLong($input) != 0;
   } else if (PyFloat_Check($input)) {
     $1.myInt = int(PyFloat_AsDouble($input));
     $1.myDouble = PyFloat_AsDouble($input);
   } else if (PyBool_Check($input)) {
     $1.myBool = $input == Py_True;
-  } else if (PyString_Check($input)) {
-    $1.myStr = PyString_AsString($input);
+  } else if (PyUnicode_Check($input)) {
+    $1.myStr = PyUnicode_AsUTF8($input);
   } else if ((SWIG_ConvertPtr($input, (void **)&$1, $1_descriptor, SWIG_POINTER_EXCEPTION)) == 0) {
   } else {
     PyErr_SetString(PyExc_ValueError, "Tables value must be int, double, string or bool.");
 %include "ModelAPI_ResultField.h"
 %include "ModelAPI_ResultParameter.h"
 %include "ModelAPI_Tools.h"
-%include "ModelAPI_ResultCompSolid.h"
 %include "ModelAPI_Folder.h"
 
 // std::list -> []
@@ -182,7 +184,6 @@ template<class T1, class T2> std::shared_ptr<T1> shared_ptr_cast(std::shared_ptr
 %template(modelAPI_ResultParameter) shared_ptr_cast<ModelAPI_ResultParameter, ModelAPI_Result>;
 %template(modelAPI_ResultGroup) shared_ptr_cast<ModelAPI_ResultPart, ModelAPI_ResultGroup>;
 %template(modelAPI_ResultField) shared_ptr_cast<ModelAPI_ResultPart, ModelAPI_ResultField>;
-%template(modelAPI_ResultCompSolid) shared_ptr_cast<ModelAPI_ResultCompSolid, ModelAPI_ResultBody>;
 
 // Attribute casts
 %template(modelAPI_AttributeDocRef)        shared_ptr_cast<ModelAPI_AttributeDocRef, ModelAPI_Attribute>;