Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / Model / Model_AttributeDocRef.h
1 // File:        Model_AttributeDocRef.h
2 // Created:     2 Apr 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef Model_AttributeDocRef_H_
6 #define Model_AttributeDocRef_H_
7
8 #include "Model.h"
9 #include "ModelAPI_AttributeDocRef.h"
10 #include <TDataStd_Comment.hxx>
11 #include <TDF_Label.hxx>
12
13 /**\class Model_AttributeDocRef
14  * \ingroup DataModel
15  * \brief Attribute that contains reference to another document.
16  */
17
18 class Model_AttributeDocRef : public ModelAPI_AttributeDocRef
19 {
20   Handle_TDataStd_Comment myComment; ///< reference to document is identified as string-id
21 public:
22   /// Defines the document referenced from this attribute
23   MODEL_EXPORT virtual void setValue(boost::shared_ptr<ModelAPI_Document> theDoc);
24
25   /// Returns document referenced from this attribute
26   MODEL_EXPORT virtual boost::shared_ptr<ModelAPI_Document> value();
27
28 protected:
29   /// Initializes attibutes
30   Model_AttributeDocRef(TDF_Label& theLabel);
31
32   friend class Model_Data;
33 };
34
35 #endif