X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModelAPI%2FModelAPI_AttributeRefList.h;h=9384d2855215acefab356e10b75e32e0a259c357;hb=074b1d850036614d4a08999c4bc4e8630db63d2b;hp=d9948dd04d27a15e7d74032de20250fbbfbbe4b5;hpb=2c4f7de06341fa7af89f47ba405fe188f13e3600;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_AttributeRefList.h b/src/ModelAPI/ModelAPI_AttributeRefList.h index d9948dd04..9384d2855 100644 --- a/src/ModelAPI/ModelAPI_AttributeRefList.h +++ b/src/ModelAPI/ModelAPI_AttributeRefList.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_AttributeRefList.h // Created: 8 May 2014 // Author: Mikhail PONIKAROV @@ -16,12 +18,15 @@ 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 type() + { + 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; @@ -30,15 +35,21 @@ public: MODELAPI_EXPORT virtual void remove(ObjectPtr theObject) = 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; -protected: + /// 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 AttributeRefListPtr; + #endif