X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Attribute.h;h=55cbb7cfd9c1d8fc82b2c3ee3ccff5980db91c46;hb=388c833ce58fe2991881c9a66d529d805fa84bd5;hp=4a15abb88c718b680beeff2b45d323c3020426e2;hpb=4e60e46af3ebb4d1d8e1709e7806ed134edd4be7;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Attribute.h b/src/ModelAPI/ModelAPI_Attribute.h index 4a15abb88..55cbb7cfd 100644 --- a/src/ModelAPI/ModelAPI_Attribute.h +++ b/src/ModelAPI/ModelAPI_Attribute.h @@ -9,7 +9,7 @@ #include #include -class ModelAPI_Feature; +class ModelAPI_Object; /**\class ModelAPI_Attribute * \ingroup DataModel @@ -18,7 +18,7 @@ class ModelAPI_Feature; class ModelAPI_Attribute { ///< needed here to emit signal that feature changed on change of the attribute - boost::shared_ptr myFeature; + boost::shared_ptr myObject; protected: // accessible from the attributes bool myIsInitialized; public: @@ -30,12 +30,12 @@ public: MODELAPI_EXPORT virtual ~ModelAPI_Attribute() {} /// Sets the owner of this attribute - MODELAPI_EXPORT void setFeature(const boost::shared_ptr& theFeature) - {myFeature = theFeature;} + MODELAPI_EXPORT void setObject(const boost::shared_ptr& theObject) + {myObject = theObject;} /// Returns the owner of this attribute - MODELAPI_EXPORT const boost::shared_ptr& owner() - {return myFeature;} + MODELAPI_EXPORT const boost::shared_ptr& owner() + {return myObject;} /// Returns true if attribute was initialized by some value MODELAPI_EXPORT bool isInitialized() {return myIsInitialized;}