Salome HOME
Update SketchPlugin_Projection feature (issue #1459)
[modules/shaper.git] / src / GeomDataAPI / GeomDataAPI.i
index 455e0122e642146eaa073e5176c52bd11564da39..df40992c95607145582756d26e216421605faf1b 100644 (file)
@@ -1,23 +1,22 @@
 /* GeomDataAPI.i */
 %module GeomDataAPI
 %{
-  #include "GeomDataAPI.h"
-  #include "GeomDataAPI_Point.h"
-  #include "GeomDataAPI_Dir.h"
-  #include "GeomDataAPI_Point2D.h"
-  #include <boost/shared_ptr.hpp>
+  #include "GeomDataAPI_swig.h"
 %}
 
+// import other modules
+%import "ModelAPI.i"
+
 // to avoid error on this
 #define GEOMDATAAPI_EXPORT
+#define MODELAPI_EXPORT
 
 // standard definitions
 %include "typemaps.i"
 %include "std_string.i"
-//%include <std_shared_ptr.i>
+%include "std_list.i"
+%include "std_shared_ptr.i"
 
-// boost pointers
-%include <boost_shared_ptr.i>
 %shared_ptr(GeomDataAPI_Point)
 %shared_ptr(GeomDataAPI_Dir)
 %shared_ptr(GeomDataAPI_Point2D)
@@ -26,3 +25,8 @@
 %include "GeomDataAPI_Point.h"
 %include "GeomDataAPI_Dir.h"
 %include "GeomDataAPI_Point2D.h"
+
+template<class T> std::shared_ptr<T> castTo(std::shared_ptr<ModelAPI_Attribute> theObject);
+%template(geomDataAPI_Point) castTo<GeomDataAPI_Point>;
+%template(geomDataAPI_Dir) castTo<GeomDataAPI_Dir>;
+%template(geomDataAPI_Point2D) castTo<GeomDataAPI_Point2D>;