Salome HOME
Boost has been removed from code
[modules/shaper.git] / src / Model / Model_AttributeDocRef.cpp
index 83615e30ec458bd63417ebc210e95a03b4558ee4..566533aaf1f17309ab02bb5b4dd2635a11255451 100644 (file)
@@ -9,8 +9,9 @@
 
 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());
   if (!myIsInitialized || myComment->Get() != aNewID) {
     myComment->Set(TCollection_ExtendedString(theDoc->id().c_str()));
@@ -18,13 +19,9 @@ 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()
 {
-  if (myComment->Get().Length())
-    return Model_Application::getApplication()->getDocument(
-      TCollection_AsciiString(myComment->Get()).ToCString());
-  // not initialized
-  return boost::shared_ptr<ModelAPI_Document>();
+  return myDoc;
 }
 
 Model_AttributeDocRef::Model_AttributeDocRef(TDF_Label& theLabel)
@@ -33,7 +30,7 @@ Model_AttributeDocRef::Model_AttributeDocRef(TDF_Label& theLabel)
   if (!myIsInitialized) {
     // create attribute: not initialized by value yet, just empty string
     myComment = TDataStd_Comment::Set(theLabel, "");
-  } else { // document was already referenced: try to set it as loaded by demand
+  } else {  // document was already referenced: try to set it as loaded by demand
     Handle(Model_Application) anApp = Model_Application::getApplication();
     string anID(TCollection_AsciiString(myComment->Get()).ToCString());
     if (!anApp->hasDocument(anID)) {