]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModelAPI/ModelAPI.i
Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[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_Result.h"
22   #include "ModelAPI_ResultConstruction.h"
23   
24   template<class T> boost::shared_ptr<T> castTo(boost::shared_ptr<ModelAPI_Result> theObject) 
25   { 
26     return boost::dynamic_pointer_cast<T>(theObject); 
27   }
28   
29    
30 %}
31
32 // to avoid error on this
33 #define MODELAPI_EXPORT
34 #define GEOMAPI_EXPORT
35
36 // standard definitions
37 %include "typemaps.i"
38 %include "std_string.i"
39 %include "std_list.i"
40
41 // boost pointers
42 %include <boost_shared_ptr.i>
43 // For ModelAPI_ResultConstruction.shape()
44 %shared_ptr(GeomAPI_Interface)
45 %shared_ptr(GeomAPI_Shape)
46 %shared_ptr(ModelAPI_Document)
47 %shared_ptr(ModelAPI_Session)
48 %shared_ptr(ModelAPI_Object)
49 %shared_ptr(ModelAPI_Feature)
50 %shared_ptr(ModelAPI_Data)
51 %shared_ptr(ModelAPI_Attribute)
52 %shared_ptr(ModelAPI_AttributeDocRef)
53 %shared_ptr(ModelAPI_AttributeDouble)
54 %shared_ptr(ModelAPI_AttributeInteger)
55 %shared_ptr(ModelAPI_AttributeString)
56 %shared_ptr(ModelAPI_AttributeReference)
57 %shared_ptr(ModelAPI_AttributeRefAttr)
58 %shared_ptr(ModelAPI_AttributeRefList)
59 %shared_ptr(ModelAPI_Result)
60 %shared_ptr(ModelAPI_ResultConstruction)
61
62 // all supported interfaces
63 %include "GeomAPI_Interface.h"
64 %include "GeomAPI_Shape.h"
65 %include "ModelAPI_Document.h"
66 %include "ModelAPI_Session.h"
67 %include "ModelAPI_Object.h"
68 %include "ModelAPI_Feature.h"
69 %include "ModelAPI_Data.h"
70 %include "ModelAPI_Attribute.h"
71 %include "ModelAPI_AttributeDocRef.h"
72 %include "ModelAPI_AttributeDouble.h"
73 %include "ModelAPI_AttributeInteger.h"
74 %include "ModelAPI_AttributeString.h"
75 %include "ModelAPI_AttributeReference.h"
76 %include "ModelAPI_AttributeRefAttr.h"
77 %include "ModelAPI_Validator.h"
78 %include "ModelAPI_AttributeRefList.h"
79 %include "ModelAPI_Result.h"
80 %include "ModelAPI_ResultConstruction.h"
81
82 %template(ObjectList) std::list<boost::shared_ptr<ModelAPI_Object> >;
83 %template(ResultList) std::list<boost::shared_ptr<ModelAPI_Result> >;
84
85 template<class T> boost::shared_ptr<T> castTo(boost::shared_ptr<ModelAPI_Result> theObject);
86 %template(modelAPI_ResultConstruction) castTo<ModelAPI_ResultConstruction>;