Salome HOME
Commit of the current operation if the preselection is activated.
[modules/shaper.git] / src / Model / Model_AttributeRefList.h
index 87525753e1cab74ef7dba352a2fcdedc1937a280..2b0edac1fc99c7a2f4ab30f1109f29e2c140b668 100644 (file)
@@ -18,8 +18,8 @@
 
 class Model_AttributeRefList : public ModelAPI_AttributeRefList
 {
-  Handle_TDataStd_ReferenceList myRef; ///< references to the features labels
-public:
+  Handle_TDataStd_ReferenceList myRef;  ///< references to the features labels
+ public:
   /// Appends the feature to the end of a list
   MODEL_EXPORT virtual void append(ObjectPtr theObject);
 
@@ -27,12 +27,15 @@ public:
   MODEL_EXPORT virtual void remove(ObjectPtr theObject);
 
   /// Returns number of features in the list
-  MODEL_EXPORT virtual int size();
+  MODEL_EXPORT virtual int size() const;
 
   /// Returns the list of features
-  MODEL_EXPORT virtual std::list<ObjectPtr > list();
+  MODEL_EXPORT virtual std::list<ObjectPtr> list();
 
-protected:
+  /// Returns the list of features
+  MODEL_EXPORT virtual ObjectPtr object(const int theIndex) const;
+
+ protected:
   /// Objects are created for features automatically
   MODEL_EXPORT Model_AttributeRefList(TDF_Label& theLabel);