Salome HOME
Update SketchBuilder to work on faces with holes (issue #1320)
[modules/shaper.git] / src / ModelAPI / ModelAPI.i
index 8da7ce250a1cf8dc59f3137f4df441fd48551590..aaf61bdc477cd4f22bbd3fa891e1637cea9270ab 100644 (file)
@@ -9,59 +9,21 @@
 }
 
 %{
-  #include "ModelAPI.h"
-  #include "ModelAPI_Entity.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"
-  #include "ModelAPI_AttributeDocRef.h"
-  #include "ModelAPI_AttributeDouble.h"
-  #include "ModelAPI_AttributeInteger.h"
-  #include "ModelAPI_AttributeIntArray.h"
-  #include "ModelAPI_AttributeString.h"
-  #include "ModelAPI_AttributeReference.h"
-  #include "ModelAPI_AttributeRefAttr.h"
-  #include "ModelAPI_AttributeSelection.h"
-  #include "ModelAPI_AttributeSelectionList.h"
-  #include "ModelAPI_AttributeValidator.h"
-  #include "ModelAPI_Validator.h"
-  #include "ModelAPI_FeatureValidator.h"
-  #include "ModelAPI_AttributeRefList.h"
-  #include "ModelAPI_AttributeBoolean.h"
-  #include "ModelAPI_Result.h"
-  #include "ModelAPI_ResultConstruction.h"
-  #include "ModelAPI_ResultBody.h"
-  #include "ModelAPI_ResultPart.h"
-  #include "ModelAPI_ResultParameter.h"
-  #include "ModelAPI_ResultGroup.h"
-  #include "ModelAPI_Tools.h"
-  #include "ModelAPI_ResultCompSolid.h"
-  
-  #include <memory>
-  #include <string>
-  
-  template<class T1, class T2> 
-  std::shared_ptr<T1> shared_ptr_cast(std::shared_ptr<T2> theObject)
-  { 
-    return std::dynamic_pointer_cast<T1>(theObject); 
-  }
-
+  #include "ModelAPI_swig.h"
 %}
 
+// import other modules
+%import "GeomAPI.i"
+
 // to avoid error on this
 #define MODELAPI_EXPORT
 
 // standard definitions
-%include "GeomAPI.i"
 %include "typemaps.i"
 %include "std_string.i"
 %include "std_list.i"
 %include "std_shared_ptr.i"
+%include "std_set.i"
 
 // directors
 %feature("director") ModelAPI_Plugin;
@@ -89,6 +51,7 @@
 %shared_ptr(ModelAPI_AttributeReference)
 %shared_ptr(ModelAPI_AttributeRefAttr)
 %shared_ptr(ModelAPI_AttributeRefList)
+%shared_ptr(ModelAPI_AttributeRefAttrList)
 %shared_ptr(ModelAPI_AttributeBoolean)
 %shared_ptr(ModelAPI_AttributeSelection)
 %shared_ptr(ModelAPI_AttributeSelectionList)
 %include "ModelAPI_AttributeSelection.h"
 %include "ModelAPI_AttributeSelectionList.h"
 %include "ModelAPI_AttributeRefList.h"
+%include "ModelAPI_AttributeRefAttrList.h"
 %include "ModelAPI_Validator.h"
 %include "ModelAPI_AttributeValidator.h"
 %include "ModelAPI_FeatureValidator.h"
 %template(ObjectList) std::list<std::shared_ptr<ModelAPI_Object> >;
 %template(ResultList) std::list<std::shared_ptr<ModelAPI_Result> >;
 %template(DocumentList) std::list<std::shared_ptr<ModelAPI_Document> >;
+// std::set -> []
+%template(AttributeSet) std::set<std::shared_ptr<ModelAPI_Attribute> >;
 
 // std::dynamic_pointer_cast
 template<class T1, class T2> std::shared_ptr<T1> shared_ptr_cast(std::shared_ptr<T2> theObject);
@@ -167,3 +133,4 @@ template<class T1, class T2> std::shared_ptr<T1> shared_ptr_cast(std::shared_ptr
 %template(modelAPI_AttributeSelection)     shared_ptr_cast<ModelAPI_AttributeSelection, ModelAPI_Attribute>;
 %template(modelAPI_AttributeSelectionList) shared_ptr_cast<ModelAPI_AttributeSelectionList, ModelAPI_Attribute>;
 %template(modelAPI_AttributeRefList)       shared_ptr_cast<ModelAPI_AttributeRefList, ModelAPI_Attribute>;
+%template(modelAPI_AttributeRefAttrList)   shared_ptr_cast<ModelAPI_AttributeRefAttrList, ModelAPI_Attribute>;