X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_AttributeRefList.h;h=2a282108fb911197c2f837557fa4e62cd827865b;hb=dc50f2f6b509a5dd5de0be397a3fe4564cb8d98d;hp=37e9f68de6b1a8a51d85cadfa2d35012da463b04;hpb=f3a0d516413a9cd48c40d6094339606ce00bb4db;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_AttributeRefList.h b/src/ModelAPI/ModelAPI_AttributeRefList.h index 37e9f68de..2a282108f 100644 --- a/src/ModelAPI/ModelAPI_AttributeRefList.h +++ b/src/ModelAPI/ModelAPI_AttributeRefList.h @@ -29,22 +29,34 @@ class ModelAPI_AttributeRefList : public ModelAPI_Attribute MODELAPI_EXPORT virtual std::string attributeType(); /// Appends the feature to the end of a list - MODELAPI_EXPORT virtual void append(ObjectPtr theObject) = 0; + virtual void append(ObjectPtr theObject) = 0; /// Erases the first meet of the feature in the list - MODELAPI_EXPORT virtual void remove(ObjectPtr theObject) = 0; + virtual void remove(ObjectPtr theObject) = 0; /// Removes all references from the list - MODELAPI_EXPORT virtual void clear() = 0; + virtual void clear() = 0; /// Returns number of features in the list - MODELAPI_EXPORT virtual int size() const = 0; + ///\param theWithEmpty if it is false, returns the number of not-empty referenced objects + virtual int size(const bool theWithEmpty = true) const = 0; /// Returns the list of features - MODELAPI_EXPORT virtual std::list list() = 0; + virtual std::list list() = 0; - /// Returns the referenced object by the zero-based index - MODELAPI_EXPORT virtual ObjectPtr object(const int theIndex) const = 0; + /// Returns true if the object is in list + virtual bool isInList(const ObjectPtr& theObj) = 0; + + /// Returns the referenced object by the zero-based index + ///\param theIndex zero-based index in the list + ///\param theWithEmpty if it is false, counts the not-empty referenced objects only + virtual ObjectPtr object(const int theIndex, const bool theWithEmpty = true) const = 0; + + /// Substitutes the feature by another one. Does nothing if such object is not found. + virtual void substitute(const ObjectPtr& theCurrent, const ObjectPtr& theNew) = 0; + + /// Removes the last element in the list. + virtual void removeLast() = 0; MODELAPI_EXPORT virtual ~ModelAPI_AttributeRefList(); protected: