Salome HOME
Boost has been removed from code
[modules/shaper.git] / src / ModelAPI / ModelAPI_ResultPart.h
index bd7a7deeab05c1e9ae8f50d67010e80c513137dc..f0db94ee31b44cc9a6fd52207d1c5016020e68a2 100644 (file)
@@ -40,13 +40,13 @@ class ModelAPI_ResultPart : public ModelAPI_Result
   }
 
   /// Returns the part-document of this result
-  virtual boost::shared_ptr<ModelAPI_Document> partDoc() = 0;
+  virtual std::shared_ptr<ModelAPI_Document> partDoc() = 0;
 
   /// Sets this document as current and if it is not loaded yet, loads it
   virtual void activate() = 0;
 };
 
 //! Pointer on feature object
-typedef boost::shared_ptr<ModelAPI_ResultPart> ResultPartPtr;
+typedef std::shared_ptr<ModelAPI_ResultPart> ResultPartPtr;
 
 #endif