Salome HOME
Merge branch 'Dev_0.7.1' of newgeom:newgeom into Dev_0.7.1
[modules/shaper.git] / src / Model / Model_AttributeDocRef.cpp
index 67486266c1089c44e8e419e5b97472149cd53b98..2284226c262cb09819572a5c52e370623f5a7950 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        ModelAPI_AttributeDocRef.cxx
 // Created:     2 Apr 2014
 // Author:      Mikhail PONIKAROV
@@ -9,7 +11,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 +21,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;
 }