Salome HOME
Reanud's patch for modern Cpp11 compilers applied
[modules/shaper.git] / src / Model / Model_AttributeReference.h
index da4eb7fbce8f795639bf1ea62514330b510f5b03..991f4e725544ae90283cad4ecd618c58bbeba063 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        Model_AttributeReference.h
 // Created:     8 May 2014
 // Author:      Mikhail PONIKAROV
@@ -26,11 +28,16 @@ class Model_AttributeReference : public ModelAPI_AttributeReference
   /// Returns object referenced from this attribute
   MODEL_EXPORT virtual ObjectPtr value();
 
- protected:
+  MODEL_EXPORT ~Model_AttributeReference();
+
+  MODEL_EXPORT virtual void setObject(const std::shared_ptr<ModelAPI_Object>& theObject);
+
+protected:
   /// Objects are created for features automatically
   MODEL_EXPORT Model_AttributeReference(TDF_Label& theLabel);
 
   friend class Model_Data;
+  friend class Model_AttributeSelection;
 };
 
 #endif