Salome HOME
Remove Boost shared_ptr, use std instead
[modules/shaper.git] / src / Model / Model_Application.cxx
index 560f5805c980b9d0143baaa0fdaa974e6f5c86be..ac1eeb896c8cb9ce1eb51564de0902ad3cc987a2 100644 (file)
@@ -23,12 +23,12 @@ Handle(Model_Application) Model_Application::getApplication()
 //function : getDocument
 //purpose  : 
 //=======================================================================
-boost::shared_ptr<Model_Document> Model_Application::getDocument(std::string theDocID)
+std::shared_ptr<Model_Document> Model_Application::getDocument(std::string theDocID)
 {
   if (myDocs.find(theDocID) != myDocs.end())
     return myDocs[theDocID];
 
-  boost::shared_ptr<Model_Document> aNew(new Model_Document("BinOcaf"));
+  std::shared_ptr<Model_Document> aNew(new Model_Document);
   myDocs[theDocID] = aNew;
   return aNew;
 }