Salome HOME
addUniqueNamedCopiedFeature to use unique names for copies features.
[modules/shaper.git] / src / ModelAPI / ModelAPI_AttributeRefList.h
index abb39beb645cc8b9bb3cf6b58c54cb291406aa88..37e9f68de6b1a8a51d85cadfa2d35012da463b04 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        ModelAPI_AttributeRefList.h
 // Created:     8 May 2014
 // Author:      Mikhail PONIKAROV
@@ -18,16 +20,13 @@ class ModelAPI_AttributeRefList : public ModelAPI_Attribute
 {
  public:
   /// Returns the type of this class of attributes
-  MODELAPI_EXPORT static std::string type()
+  MODELAPI_EXPORT static std::string typeId()
   {
     return "RefList";
   }
 
   /// Returns the type of this class of attributes, not static method
-  MODELAPI_EXPORT virtual std::string attributeType()
-  {
-    return type();
-  }
+  MODELAPI_EXPORT virtual std::string attributeType();
 
   /// Appends the feature to the end of a list
   MODELAPI_EXPORT virtual void append(ObjectPtr theObject) = 0;
@@ -35,6 +34,9 @@ class ModelAPI_AttributeRefList : public ModelAPI_Attribute
   /// Erases the first meet of the feature in the list
   MODELAPI_EXPORT virtual void remove(ObjectPtr theObject) = 0;
 
+  /// Removes all references from the list
+  MODELAPI_EXPORT virtual void clear() = 0;
+
   /// Returns number of features in the list
   MODELAPI_EXPORT virtual int size() const = 0;
 
@@ -44,11 +46,13 @@ class ModelAPI_AttributeRefList : public ModelAPI_Attribute
  /// Returns the referenced object by the zero-based index
   MODELAPI_EXPORT virtual ObjectPtr object(const int theIndex) const = 0;
 
+  MODELAPI_EXPORT virtual ~ModelAPI_AttributeRefList();
  protected:
   /// Objects are created for features automatically
-  MODELAPI_EXPORT ModelAPI_AttributeRefList()
-  {
-  }
+  MODELAPI_EXPORT ModelAPI_AttributeRefList();
+
 };
 
+typedef std::shared_ptr<ModelAPI_AttributeRefList> AttributeRefListPtr;
+
 #endif