]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/Model/Model_AttributeDocRef.cpp
Salome HOME
Boost has been removed from code
[modules/shaper.git] / src / Model / Model_AttributeDocRef.cpp
index 67486266c1089c44e8e419e5b97472149cd53b98..566533aaf1f17309ab02bb5b4dd2635a11255451 100644 (file)
@@ -9,7 +9,7 @@
 
 using namespace std;
 
-void Model_AttributeDocRef::setValue(boost::shared_ptr<ModelAPI_Document> theDoc)
+void Model_AttributeDocRef::setValue(std::shared_ptr<ModelAPI_Document> theDoc)
 {
   myDoc = theDoc;
   TCollection_ExtendedString aNewID(theDoc->id().c_str());
@@ -19,7 +19,7 @@ void Model_AttributeDocRef::setValue(boost::shared_ptr<ModelAPI_Document> theDoc
   }
 }
 
-boost::shared_ptr<ModelAPI_Document> Model_AttributeDocRef::value()
+std::shared_ptr<ModelAPI_Document> Model_AttributeDocRef::value()
 {
   return myDoc;
 }