X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_AttributeRefAttr.h;h=49337e695a9e7ebae3b79a944271b6a3d2b72f52;hb=69290817c24cb8b9d240129d8573b46807a007ef;hp=8422966720018c66a861df5a622ef8200e4f05a4;hpb=e9da4a58641d63176d3214d2f5e3440b917f611d;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeRefAttr.h b/src/Model/Model_AttributeRefAttr.h index 842296672..49337e695 100644 --- a/src/Model/Model_AttributeRefAttr.h +++ b/src/Model/Model_AttributeRefAttr.h @@ -1,9 +1,11 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_AttributeRefAttr.h // Created: 8 May 2014 // Author: Mikhail PONIKAROV -#ifndef Model_AttributeRefAttr_HeaderFile -#define Model_AttributeRefAttr_HeaderFile +#ifndef Model_AttributeRefAttr_H_ +#define Model_AttributeRefAttr_H_ #include "Model.h" #include "ModelAPI_AttributeRefAttr.h" @@ -19,16 +21,29 @@ class Model_AttributeRefAttr : public ModelAPI_AttributeRefAttr { - Handle_TDF_Reference myRef; ///< reference to the feature label - Handle_TDataStd_Comment myID; ///< ID of the referenced attirbute -public: - /// Defines the attribute referenced from this attribute - MODEL_EXPORT virtual void setValue(boost::shared_ptr theAttr); + Handle_TDF_Reference myRef; ///< reference to the feature label + ///< ID of the referenced attirbute (empty if this is a reference to a feature) + Handle_TDataStd_Comment myID; + public: + /// Returns true if this attribute references to a object (not to the attribute) + MODEL_EXPORT virtual bool isObject(); + + /// Defines the reference to the attribute + MODEL_EXPORT virtual void setAttr(std::shared_ptr theAttr); /// Returns attribute referenced from this attribute - MODEL_EXPORT virtual boost::shared_ptr value(); + MODEL_EXPORT virtual std::shared_ptr attr(); + + /// Defines the reference to the object + MODEL_EXPORT virtual void setObject(ObjectPtr theFeature); + + /// Returns object referenced from this attribute + MODEL_EXPORT virtual ObjectPtr object(); + + /// Returns true if attribute was initialized by some value + MODEL_EXPORT virtual bool isInitialized(); -protected: + protected: /// Objects are created for features automatically MODEL_EXPORT Model_AttributeRefAttr(TDF_Label& theLabel);