X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultGroup.h;h=46a453de348b2f92fe2d495eabc5eb4dec269235;hb=3070f65d8043025320863a37498bdfc1d3751651;hp=30e3588985df75aa18e674e1e648f2748410846b;hpb=4b378265f0b502fe00e8af93ce9f2c5739acfc1c;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultGroup.h b/src/Model/Model_ResultGroup.h index 30e358898..46a453de3 100644 --- a/src/Model/Model_ResultGroup.h +++ b/src/Model/Model_ResultGroup.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_ResultGroup.h // Created: 08 Jul 2014 // Author: Mikhail PONIKAROV @@ -16,17 +18,17 @@ */ class Model_ResultGroup : public ModelAPI_ResultGroup { - boost::shared_ptr myOwnerData; ///< data of owner of this result + std::shared_ptr myOwnerData; ///< data of owner of this result public: /// Returns the compound of selected entities - MODEL_EXPORT virtual boost::shared_ptr shape() const; + MODEL_EXPORT virtual std::shared_ptr shape(); /// Removes the stored builders MODEL_EXPORT virtual ~Model_ResultGroup() {} protected: /// Makes a body on the given feature data - Model_ResultGroup(boost::shared_ptr theOwnerData); + Model_ResultGroup(std::shared_ptr theOwnerData); friend class Model_Document; };