Salome HOME
Implementation of color as integer array attribute
[modules/shaper.git] / src / ModelAPI / ModelAPI_AttributeRefList.h
index 3036cc9704b629c4202960f34c963c16981e65d8..9384d2855215acefab356e10b75e32e0a259c357 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        ModelAPI_AttributeRefList.h
 // Created:     8 May 2014
 // Author:      Mikhail PONIKAROV
@@ -24,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;
@@ -44,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<ModelAPI_AttributeRefList> AttributeRefListPtr;