Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / ModelAPI / ModelAPI_Result.h
index c702ba25a85c5c476469d77b57eee3c5bc928e5b..91304744e457755086d2b4a93fb78722b0a24b76 100644 (file)
@@ -32,10 +32,10 @@ class ModelAPI_Result : public ModelAPI_Object
   }
 
   /// Returns the shape-result produced by this feature (or null if no shapes)
-  virtual boost::shared_ptr<GeomAPI_Shape> shape() {return boost::shared_ptr<GeomAPI_Shape>();}
+  virtual std::shared_ptr<GeomAPI_Shape> shape() {return std::shared_ptr<GeomAPI_Shape>();}
 };
 
 //! Pointer on feature object
-typedef boost::shared_ptr<ModelAPI_Result> ResultPtr;
+typedef std::shared_ptr<ModelAPI_Result> ResultPtr;
 
 #endif