X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_AttributeRefList.h;h=37e9f68de6b1a8a51d85cadfa2d35012da463b04;hb=23d55c9a069dc7bde8c49f67edd900992aea2dcc;hp=87800fb3660d0ab102944894dc0093aaf5295138;hpb=f581964034f8df715c46a07c5ecb762492d6b4cf;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_AttributeRefList.h b/src/ModelAPI/ModelAPI_AttributeRefList.h index 87800fb36..37e9f68de 100644 --- a/src/ModelAPI/ModelAPI_AttributeRefList.h +++ b/src/ModelAPI/ModelAPI_AttributeRefList.h @@ -1,9 +1,11 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_AttributeRefList.h // Created: 8 May 2014 // Author: Mikhail PONIKAROV -#ifndef ModelAPI_AttributeRefList_HeaderFile -#define ModelAPI_AttributeRefList_HeaderFile +#ifndef ModelAPI_AttributeRefList_H_ +#define ModelAPI_AttributeRefList_H_ #include "ModelAPI_Attribute.h" #include "ModelAPI_Feature.h" @@ -16,29 +18,41 @@ class ModelAPI_AttributeRefList : public ModelAPI_Attribute { -public: + public: /// Returns the type of this class of attributes - MODELAPI_EXPORT static std::string type() {return "RefList";} + 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(FeaturePtr theFeature) = 0; + MODELAPI_EXPORT virtual void append(ObjectPtr theObject) = 0; /// Erases the first meet of the feature in the list - MODELAPI_EXPORT virtual void remove(FeaturePtr theFeature) = 0; + 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() = 0; + MODELAPI_EXPORT virtual int size() const = 0; /// Returns the list of features - MODELAPI_EXPORT virtual std::list list() = 0; + MODELAPI_EXPORT virtual std::list list() = 0; + + /// Returns the referenced object by the zero-based index + MODELAPI_EXPORT virtual ObjectPtr object(const int theIndex) const = 0; -protected: + MODELAPI_EXPORT virtual ~ModelAPI_AttributeRefList(); + protected: /// Objects are created for features automatically - MODELAPI_EXPORT ModelAPI_AttributeRefList() - {} + MODELAPI_EXPORT ModelAPI_AttributeRefList(); + }; +typedef std::shared_ptr AttributeRefListPtr; + #endif