X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultPart.h;h=cda7bf6cd5f25a290116d6a99ce03f042d353243;hb=647f62a71de86575a6c5ac73c61371d336c8da75;hp=e26413c3fb13d0b69c59395070c7bee3cd0b3212;hpb=deb0185764c5a7ab524646cfdc2b7ce22afae81d;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultPart.h b/src/Model/Model_ResultPart.h index e26413c3f..cda7bf6cd 100644 --- a/src/Model/Model_ResultPart.h +++ b/src/Model/Model_ResultPart.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_ResultPart.hxx // Created: 07 Jul 2014 // Author: Mikhail PONIKAROV @@ -8,7 +10,7 @@ #include "Model.h" #include -/**\class ModelAPI_ResultPart +/**\class Model_ResultPart * \ingroup DataModel * \brief The Part document, result of a creation of new part feature. * @@ -19,9 +21,9 @@ class Model_ResultPart : public ModelAPI_ResultPart { public: /// Returns the part-document of this result - MODEL_EXPORT virtual boost::shared_ptr partDoc(); + MODEL_EXPORT virtual std::shared_ptr partDoc(); /// Part has no stored feature: this method returns NULL - MODEL_EXPORT virtual boost::shared_ptr owner(); + MODEL_EXPORT virtual std::shared_ptr owner(); /// Sets this document as current and if it is not loaded yet, loads it MODEL_EXPORT virtual void activate(); @@ -31,7 +33,10 @@ protected: Model_ResultPart(); /// Sets the data manager of an object (document does), here also attributes are initialized - virtual void setData(boost::shared_ptr theData); + virtual void setData(std::shared_ptr theData); + + /// Returns true if document is activated (loaded into the memory) + virtual bool isActivated(); friend class Model_Document; };