Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / ModelAPI / ModelAPI_AttributeRefAttr.h
1 // File:        ModelAPI_AttributeRefAttr.h
2 // Created:     8 May 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef ModelAPI_AttributeRefAttr_HeaderFile
6 #define ModelAPI_AttributeRefAttr_HeaderFile
7
8 #include "ModelAPI_Attribute.h"
9
10 /**\class ModelAPI_AttributeRefAttr
11  * \ingroup DataModel
12  * \brief Attribute that contains reference to an attribute of a feature 
13  * (located in the same document).
14  */
15
16 class ModelAPI_AttributeRefAttr : public ModelAPI_Attribute
17 {
18 public:
19   /// Defines the attribute referenced from this attribute
20   MODELAPI_EXPORT virtual void setValue(boost::shared_ptr<ModelAPI_Attribute> theAttr) = 0;
21
22   /// Returns attribute referenced from this attribute
23   MODELAPI_EXPORT virtual boost::shared_ptr<ModelAPI_Attribute> value() = 0;
24
25   /// Returns the type of this class of attributes
26   MODELAPI_EXPORT static std::string type() {return "RefAttr";}
27
28   /// Returns the type of this class of attributes, not static method
29   MODELAPI_EXPORT virtual std::string attributeType() {return type();}
30
31   /// To virtually destroy the fields of successors
32   MODELAPI_EXPORT virtual ~ModelAPI_AttributeRefAttr() {}
33
34 protected:
35   /// Objects are created for features automatically
36   MODELAPI_EXPORT ModelAPI_AttributeRefAttr()
37   {}
38 };
39
40 #endif