Salome HOME
Additional fix for the issue #1876 : now compsolid result is also splitted when selec...
[modules/shaper.git] / src / Model / Model_AttributeReference.h
index 6406d0bfbfbf0fd8b828ab4fc0dca034c39423ec..ea9b721f527b64c4d4ef78d357a1f009e0fd4a24 100644 (file)
@@ -1,9 +1,11 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        Model_AttributeReference.h
 // Created:     8 May 2014
 // Author:      Mikhail PONIKAROV
 
-#ifndef Model_AttributeReference_HeaderFile
-#define Model_AttributeReference_HeaderFile
+#ifndef Model_AttributeReference_H_
+#define Model_AttributeReference_H_
 
 #include "Model.h"
 #include "ModelAPI_AttributeReference.h"
 
 class Model_AttributeReference : public ModelAPI_AttributeReference
 {
-  Handle_TDF_Reference myRef; ///< references to the feature label
-public:
-  /// Defines the feature referenced from this attribute
-  MODEL_EXPORT virtual void setValue(FeaturePtr theFeature);
+  TDF_Label myLab; ///< the main label of this attribute
+  Handle_TDF_Reference myRef;  ///< references to the feature label
+ public:
+  /// Defines the object referenced from this attribute
+  MODEL_EXPORT virtual void setValue(ObjectPtr theObject);
+
+  /// Returns object referenced from this attribute
+  MODEL_EXPORT virtual ObjectPtr value();
+
+  MODEL_EXPORT ~Model_AttributeReference();
+
+  MODEL_EXPORT virtual void setObject(const std::shared_ptr<ModelAPI_Object>& theObject);
+
+  /// Returns true if attribute was  initialized by some value
+  MODEL_EXPORT virtual bool isInitialized();
 
-  /// Returns feature referenced from this attribute
-  MODEL_EXPORT virtual FeaturePtr value();
 
 protected:
   /// Objects are created for features automatically
   MODEL_EXPORT Model_AttributeReference(TDF_Label& theLabel);
+  /// Reinitializes the internal state of the attribute (may be needed on undo/redo, abort, etc)
+  virtual void reinit();
 
   friend class Model_Data;
+  friend class Model_AttributeSelection;
 };
 
 #endif