X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI.i;h=0c23dc012860884f10790dd1e0fa675ecdbbdd65;hb=b900918cef83bb82217e7221c7ff0ad9d8a6dbe9;hp=1558e49dc64c226f2027e9732caedb7b92cf2354;hpb=ee873b34633b1cdd0fdb2b5efad9420ff4c51806;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI.i b/src/ModelAPI/ModelAPI.i index 1558e49dc..0c23dc012 100644 --- a/src/ModelAPI/ModelAPI.i +++ b/src/ModelAPI/ModelAPI.i @@ -1,13 +1,20 @@ /* ModelAPI.i */ -%module ModelAPI +%module(directors="1") ModelAPI +%feature("director:except") { + if ($error != NULL) { + PyErr_Print(); + std::cerr << std::endl; + throw Swig::DirectorMethodException(); + } +} + %{ - #include "GeomAPI_Interface.h" - #include "GeomAPI_Shape.h" #include "ModelAPI.h" #include "ModelAPI_Document.h" #include "ModelAPI_Session.h" #include "ModelAPI_Object.h" #include "ModelAPI_Feature.h" + #include "ModelAPI_Plugin.h" #include "ModelAPI_CompositeFeature.h" #include "ModelAPI_Data.h" #include "ModelAPI_Attribute.h" @@ -28,34 +35,43 @@ #include "ModelAPI_ResultConstruction.h" #include "ModelAPI_ResultBody.h" #include "ModelAPI_ResultPart.h" - #include "ModelAPI_ResultParameters.h" + #include "ModelAPI_ResultParameter.h" #include "ModelAPI_ResultGroup.h" #include "ModelAPI_Tools.h" + + #include + #include template std::shared_ptr shared_ptr_cast(std::shared_ptr theObject) { return std::dynamic_pointer_cast(theObject); } - + %} // to avoid error on this #define MODELAPI_EXPORT -#define GEOMAPI_EXPORT // standard definitions +%include "GeomAPI.i" %include "typemaps.i" %include "std_string.i" %include "std_list.i" %include "std_shared_ptr.i" +// directors +%feature("director") ModelAPI_Plugin; +%feature("director") ModelAPI_Object; +%feature("director") ModelAPI_Feature; +%feature("director") ModelAPI_CompositeFeature; +%feature("director") ModelAPI_Data; + // shared pointers // For ModelAPI_ResultConstruction.shape() -%shared_ptr(GeomAPI_Interface) -%shared_ptr(GeomAPI_Shape) %shared_ptr(ModelAPI_Document) %shared_ptr(ModelAPI_Session) +%shared_ptr(ModelAPI_Plugin) %shared_ptr(ModelAPI_Object) %shared_ptr(ModelAPI_Feature) %shared_ptr(ModelAPI_CompositeFeature) @@ -79,13 +95,12 @@ %shared_ptr(ModelAPI_ResultBody) %shared_ptr(ModelAPI_ResultPart) %shared_ptr(ModelAPI_ResultGroup) -%shared_ptr(ModelAPI_ResultParameters) +%shared_ptr(ModelAPI_ResultParameter) // all supported interfaces -%include "GeomAPI_Interface.h" -%include "GeomAPI_Shape.h" %include "ModelAPI_Document.h" %include "ModelAPI_Session.h" +%include "ModelAPI_Plugin.h" %include "ModelAPI_Object.h" %include "ModelAPI_Feature.h" %include "ModelAPI_CompositeFeature.h" @@ -109,17 +124,34 @@ %include "ModelAPI_ResultBody.h" %include "ModelAPI_ResultPart.h" %include "ModelAPI_ResultGroup.h" -%include "ModelAPI_ResultParameters.h" +%include "ModelAPI_ResultParameter.h" %include "ModelAPI_Tools.h" +// std::list -> [] %template(ObjectList) std::list >; %template(ResultList) std::list >; %template(DocumentList) std::list >; +// std::dynamic_pointer_cast template std::shared_ptr shared_ptr_cast(std::shared_ptr theObject); -%template(modelAPI_CompositeFeature) shared_ptr_cast; -%template(modelAPI_Feature) shared_ptr_cast; +%template(featureToCompositeFeature) shared_ptr_cast; +%template(objectToFeature) shared_ptr_cast; +%template(compositeFeatureToFeature) shared_ptr_cast; + +%template(modelAPI_Result) shared_ptr_cast; %template(modelAPI_ResultConstruction) shared_ptr_cast; %template(modelAPI_ResultBody) shared_ptr_cast; %template(modelAPI_ResultPart) shared_ptr_cast; %template(modelAPI_ResultGroup) shared_ptr_cast; + +// Attribute casts +%template(modelAPI_AttributeDocRef) shared_ptr_cast; +%template(modelAPI_AttributeDouble) shared_ptr_cast; +%template(modelAPI_AttributeInteger) shared_ptr_cast; +%template(modelAPI_AttributeString) shared_ptr_cast; +%template(modelAPI_AttributeReference) shared_ptr_cast; +%template(modelAPI_AttributeRefAttr) shared_ptr_cast; +%template(modelAPI_AttributeBoolean) shared_ptr_cast; +%template(modelAPI_AttributeSelection) shared_ptr_cast; +%template(modelAPI_AttributeSelectionList) shared_ptr_cast; +%template(modelAPI_AttributeRefList) shared_ptr_cast;