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