1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: ModelAPI_swig.h
4 // Created: Dec 15, 2015
5 // Author: Sergey POKHODENKO
7 #ifndef SRC_MODELAPI_MODELAPI_SWIG_H_
8 #define SRC_MODELAPI_MODELAPI_SWIG_H_
10 #include <GeomAPI_swig.h>
13 #include "ModelAPI_Entity.h"
14 #include "ModelAPI_Document.h"
15 #include "ModelAPI_Session.h"
16 #include "ModelAPI_Object.h"
17 #include "ModelAPI_Feature.h"
18 #include "ModelAPI_Plugin.h"
19 #include "ModelAPI_CompositeFeature.h"
20 #include "ModelAPI_Data.h"
21 #include "ModelAPI_Attribute.h"
22 #include "ModelAPI_AttributeDocRef.h"
23 #include "ModelAPI_AttributeDouble.h"
24 #include "ModelAPI_AttributeDoubleArray.h"
25 #include "ModelAPI_AttributeInteger.h"
26 #include "ModelAPI_AttributeIntArray.h"
27 #include "ModelAPI_AttributeString.h"
28 #include "ModelAPI_AttributeStringArray.h"
29 #include "ModelAPI_AttributeReference.h"
30 #include "ModelAPI_AttributeRefAttr.h"
31 #include "ModelAPI_AttributeSelection.h"
32 #include "ModelAPI_AttributeSelectionList.h"
33 #include "ModelAPI_AttributeTables.h"
34 #include "ModelAPI_AttributeValidator.h"
35 #include "ModelAPI_Validator.h"
36 #include "ModelAPI_FeatureValidator.h"
37 #include "ModelAPI_AttributeRefList.h"
38 #include "ModelAPI_AttributeRefAttrList.h"
39 #include "ModelAPI_AttributeBoolean.h"
40 #include "ModelAPI_Result.h"
41 #include "ModelAPI_ResultConstruction.h"
42 #include "ModelAPI_ResultBody.h"
43 #include "ModelAPI_ResultPart.h"
44 #include "ModelAPI_ResultParameter.h"
45 #include "ModelAPI_ResultGroup.h"
46 #include "ModelAPI_ResultField.h"
47 #include "ModelAPI_Tools.h"
48 #include "ModelAPI_ResultCompSolid.h"
53 template<class T1, class T2>
54 std::shared_ptr<T1> shared_ptr_cast(std::shared_ptr<T2> theObject)
56 return std::dynamic_pointer_cast<T1>(theObject);
59 #endif /* SRC_MODELAPI_MODELAPI_SWIG_H_ */