X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_AttributeRefList.h;h=12235c5b8586f68079cb757a2aef474ed9561996;hb=b900918cef83bb82217e7221c7ff0ad9d8a6dbe9;hp=d8edfe8d0bfdb1a4d8411512cc6b1823e3fdabda;hpb=0b06415cbaab3da89567c28ea4a7ae6ecf50511b;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_AttributeRefList.h b/src/ModelAPI/ModelAPI_AttributeRefList.h index d8edfe8d0..12235c5b8 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 @@ -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; @@ -44,13 +43,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 boost::shared_ptr AttributeRefListPtr; +typedef std::shared_ptr AttributeRefListPtr; #endif