]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModelAPI/ModelAPI.i
Salome HOME
Added AttributeBoolean to python API
[modules/shaper.git] / src / ModelAPI / ModelAPI.i
1 /* ModelAPI.i */
2 %module ModelAPI
3 %{
4   #include "GeomAPI_Interface.h"
5   #include "GeomAPI_Shape.h"
6   #include "ModelAPI.h"
7   #include "ModelAPI_Document.h"
8   #include "ModelAPI_Session.h"
9   #include "ModelAPI_Object.h"
10   #include "ModelAPI_Feature.h"
11   #include "ModelAPI_Data.h"
12   #include "ModelAPI_Attribute.h"
13   #include "ModelAPI_AttributeDocRef.h"
14   #include "ModelAPI_AttributeDouble.h"
15   #include "ModelAPI_AttributeInteger.h"
16   #include "ModelAPI_AttributeString.h"
17   #include "ModelAPI_AttributeReference.h"
18   #include "ModelAPI_AttributeRefAttr.h"
19   #include "ModelAPI_Validator.h"
20   #include "ModelAPI_AttributeRefList.h"
21   #include "ModelAPI_AttributeBoolean.h"
22   #include "ModelAPI_Result.h"
23   #include "ModelAPI_ResultConstruction.h"
24   #include "ModelAPI_ResultBody.h"
25   #include "ModelAPI_ResultPart.h"
26   
27   template<class T> boost::shared_ptr<T> castTo(boost::shared_ptr<ModelAPI_Result> theObject) 
28   { 
29     return boost::dynamic_pointer_cast<T>(theObject); 
30   }
31   
32    
33 %}
34
35 // to avoid error on this
36 #define MODELAPI_EXPORT
37 #define GEOMAPI_EXPORT
38
39 // standard definitions
40 %include "typemaps.i"
41 %include "std_string.i"
42 %include "std_list.i"
43
44 // boost pointers
45 %include <boost_shared_ptr.i>
46 // For ModelAPI_ResultConstruction.shape()
47 %shared_ptr(GeomAPI_Interface)
48 %shared_ptr(GeomAPI_Shape)
49 %shared_ptr(ModelAPI_Document)
50 %shared_ptr(ModelAPI_Session)
51 %shared_ptr(ModelAPI_Object)
52 %shared_ptr(ModelAPI_Feature)
53 %shared_ptr(ModelAPI_Data)
54 %shared_ptr(ModelAPI_Attribute)
55 %shared_ptr(ModelAPI_AttributeDocRef)
56 %shared_ptr(ModelAPI_AttributeDouble)
57 %shared_ptr(ModelAPI_AttributeInteger)
58 %shared_ptr(ModelAPI_AttributeString)
59 %shared_ptr(ModelAPI_AttributeReference)
60 %shared_ptr(ModelAPI_AttributeRefAttr)
61 %shared_ptr(ModelAPI_AttributeRefList)
62 %shared_ptr(ModelAPI_AttributeBoolean)
63 %shared_ptr(ModelAPI_Result)
64 %shared_ptr(ModelAPI_ResultConstruction)
65 %shared_ptr(ModelAPI_ResultBody)
66 %shared_ptr(ModelAPI_ResultPart)
67
68 // all supported interfaces
69 %include "GeomAPI_Interface.h"
70 %include "GeomAPI_Shape.h"
71 %include "ModelAPI_Document.h"
72 %include "ModelAPI_Session.h"
73 %include "ModelAPI_Object.h"
74 %include "ModelAPI_Feature.h"
75 %include "ModelAPI_Data.h"
76 %include "ModelAPI_Attribute.h"
77 %include "ModelAPI_AttributeDocRef.h"
78 %include "ModelAPI_AttributeDouble.h"
79 %include "ModelAPI_AttributeInteger.h"
80 %include "ModelAPI_AttributeString.h"
81 %include "ModelAPI_AttributeReference.h"
82 %include "ModelAPI_AttributeRefAttr.h"
83 %include "ModelAPI_Validator.h"
84 %include "ModelAPI_AttributeRefList.h"
85 %include "ModelAPI_Result.h"
86 %include "ModelAPI_ResultConstruction.h"
87 %include "ModelAPI_ResultBody.h"
88 %include "ModelAPI_ResultPart.h"
89 %include "ModelAPI_AttributeBoolean.h"
90
91 %template(ObjectList) std::list<boost::shared_ptr<ModelAPI_Object> >;
92 %template(ResultList) std::list<boost::shared_ptr<ModelAPI_Result> >;
93
94 template<class T> boost::shared_ptr<T> castTo(boost::shared_ptr<ModelAPI_Result> theObject);
95 %template(modelAPI_ResultConstruction) castTo<ModelAPI_ResultConstruction>;
96 %template(modelAPI_ResultBody) castTo<ModelAPI_ResultBody>;
97 %template(modelAPI_ResultPart) castTo<ModelAPI_ResultPart>;