Salome HOME
7aad3d4de37c8d81d5df052cf338570f69200919
[modules/shaper.git] / src / SketchAPI / SketchAPI.i
1 /* SketchAPI.i */
2
3 %module SketchAPI
4
5 %{
6   #include "SketchAPI_swig.h"
7 %}
8
9 %include "doxyhelp.i"
10
11 // import other modules
12 %import "ModelHighAPI.i"
13
14 // to avoid error on this
15 #define SKETCHAPI_EXPORT
16
17 // standard definitions
18 %include "typemaps.i"
19 %include "std_list.i"
20 %include "std_shared_ptr.i"
21
22 // shared pointers
23 %shared_ptr(SketchAPI_Arc)
24 %shared_ptr(SketchAPI_Circle)
25 %shared_ptr(SketchAPI_Line)
26 %shared_ptr(SketchAPI_Sketch)
27 %shared_ptr(SketchAPI_SketchEntity)
28
29 // fix compilarion error: ‘res2’ was not declared in this scope
30 %typemap(freearg) const std::list<ModelHighAPI_RefAttr> & {}
31
32 %typemap(in) const std::list<ModelHighAPI_RefAttr> & (std::list<ModelHighAPI_RefAttr> temp) {
33   std::shared_ptr<ModelAPI_Attribute> * temp_attribute;
34   int newmem = 0;
35   if (PySequence_Check($input)) {
36     for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) {
37       PyObject * item = PySequence_GetItem($input, i);
38       if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_attribute, $descriptor(std::shared_ptr<ModelAPI_Attribute> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
39         if (!temp_attribute) {
40           PyErr_SetString(PyExc_TypeError, "argument must be list of ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
41           return NULL;
42         }
43         temp.push_back(ModelHighAPI_RefAttr(*temp_attribute));
44         if (newmem & SWIG_CAST_NEW_MEMORY) {
45           delete temp_attribute;
46         }
47       }
48       Py_DECREF(item);
49     }
50     $1 = &temp;
51   } else {
52     PyErr_SetString(PyExc_ValueError, "argument must be list of ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
53     return NULL;
54   }
55 }
56
57 // all supported interfaces (the order is very important: base class first)
58 %include "SketchAPI_SketchEntity.h"
59 %include "SketchAPI_Arc.h"
60 %include "SketchAPI_Circle.h"
61 %include "SketchAPI_Line.h"
62 %include "SketchAPI_Sketch.h"