6 #include "SketchAPI_swig.h"
11 // import other modules
12 %import "ModelHighAPI.i"
14 // to avoid error on this
15 #define SKETCHAPI_EXPORT
17 // standard definitions
20 %include "std_shared_ptr.i"
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)
29 // fix compilarion error: ‘res2’ was not declared in this scope
30 %typemap(freearg) const std::list<ModelHighAPI_RefAttr> & {}
32 %typemap(in) const std::list<ModelHighAPI_RefAttr> & (std::list<ModelHighAPI_RefAttr> temp) {
33 std::shared_ptr<ModelAPI_Attribute> * temp_attribute;
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.");
43 temp.push_back(ModelHighAPI_RefAttr(*temp_attribute));
44 if (newmem & SWIG_CAST_NEW_MEMORY) {
45 delete temp_attribute;
52 PyErr_SetString(PyExc_ValueError, "argument must be list of ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
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"