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_Circle)
24 %shared_ptr(SketchAPI_Line)
25 %shared_ptr(SketchAPI_Sketch)
26 %shared_ptr(SketchAPI_SketchEntity)
28 // fix compilarion error: ‘res2’ was not declared in this scope
29 %typemap(freearg) const std::list<ModelHighAPI_RefAttr> & {}
31 %typemap(in) const std::list<ModelHighAPI_RefAttr> & (std::list<ModelHighAPI_RefAttr> temp) {
32 std::shared_ptr<ModelAPI_Attribute> * temp_attribute;
34 if (PySequence_Check($input)) {
35 for (Py_ssize_t i = 0; i < PySequence_Size($input); ++i) {
36 PyObject * item = PySequence_GetItem($input, i);
37 if ((SWIG_ConvertPtrAndOwn(item, (void **)&temp_attribute, $descriptor(std::shared_ptr<ModelAPI_Attribute> *), SWIG_POINTER_EXCEPTION, &newmem)) == 0) {
38 if (!temp_attribute) {
39 PyErr_SetString(PyExc_TypeError, "argument must be list of ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
42 temp.push_back(ModelHighAPI_RefAttr(*temp_attribute));
43 if (newmem & SWIG_CAST_NEW_MEMORY) {
44 delete temp_attribute;
51 PyErr_SetString(PyExc_ValueError, "argument must be list of ModelHighAPI_RefAttr, ModelHighAPI_Interface, ModelAPI_Attribute or ModelAPI_Object.");
56 // all supported interfaces (the order is very important: base class first)
57 %include "SketchAPI_SketchEntity.h"
58 %include "SketchAPI_Circle.h"
59 %include "SketchAPI_Line.h"
60 %include "SketchAPI_Sketch.h"