X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultGroup.h;h=0dc35bdcfb25cf1bb685daa339fc326f543a9501;hb=1e92d337c3d62f0b3195ea58bea570a79be170e5;hp=30e3588985df75aa18e674e1e648f2748410846b;hpb=4b378265f0b502fe00e8af93ce9f2c5739acfc1c;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultGroup.h b/src/Model/Model_ResultGroup.h index 30e358898..0dc35bdcf 100644 --- a/src/Model/Model_ResultGroup.h +++ b/src/Model/Model_ResultGroup.h @@ -16,17 +16,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; };