Salome HOME
Issue #660 - Move Group is still not implemented -- Check refs only between the selec...
[modules/shaper.git] / src / Model / Model_AttributeRefList.h
index 2b0edac1fc99c7a2f4ab30f1109f29e2c140b668..778b6956de8edecf26652514a6c217873e6312a8 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        Model_AttributeRefList.h
 // Created:     8 May 2014
 // Author:      Mikhail PONIKAROV
@@ -14,6 +16,7 @@
 /**\class Model_AttributeRefList
  * \ingroup DataModel
  * \brief Attribute that contains list of references to features (located in the same document).
+ * For the current moment it does not support references t oobjects in other documents.
  */
 
 class Model_AttributeRefList : public ModelAPI_AttributeRefList
@@ -29,12 +32,20 @@ class Model_AttributeRefList : public ModelAPI_AttributeRefList
   /// Returns number of features in the list
   MODEL_EXPORT virtual int size() const;
 
+  /// Removes all references from the list
+  MODEL_EXPORT virtual void clear();
+
   /// Returns the list of features
   MODEL_EXPORT virtual std::list<ObjectPtr> list();
 
+  /// Returns true if the object is in list
+  MODEL_EXPORT virtual bool isInList(const ObjectPtr& theObj);
+
   /// Returns the list of features
   MODEL_EXPORT virtual ObjectPtr object(const int theIndex) const;
 
+  /// Returns true if attribute was  initialized by some value
+  MODEL_EXPORT virtual bool isInitialized();
  protected:
   /// Objects are created for features automatically
   MODEL_EXPORT Model_AttributeRefList(TDF_Label& theLabel);