X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_AttributeRefList.h;h=9384d2855215acefab356e10b75e32e0a259c357;hb=074b1d850036614d4a08999c4bc4e8630db63d2b;hp=513404266b2a48278cd4b1dc306e1ccac4914564;hpb=38afbd899a8645c83e17f2c24a17a2b7414911b4;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_AttributeRefList.h b/src/ModelAPI/ModelAPI_AttributeRefList.h index 513404266..9384d2855 100644 --- a/src/ModelAPI/ModelAPI_AttributeRefList.h +++ b/src/ModelAPI/ModelAPI_AttributeRefList.h @@ -26,10 +26,7 @@ class ModelAPI_AttributeRefList : public ModelAPI_Attribute } /// 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; @@ -46,11 +43,11 @@ 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 AttributeRefListPtr;