Refresh regs window in display_registers_from
[deliverable/binutils-gdb.git] / gdb / varobj-iter.h
index 34182e050ab123dab68ce7937f767a5671d87189..9c069bee78c688afe7b62c1730df1aa80fa3ed9f 100644 (file)
@@ -1,5 +1,5 @@
 /* Iterator of varobj.
-   Copyright (C) 2013-2017 Free Software Foundation, Inc.
+   Copyright (C) 2013-2021 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
+#ifndef VAROBJ_ITER_H
+#define VAROBJ_ITER_H
+
 /* A node or item of varobj, composed of the name and the value.  */
 
-typedef struct varobj_item
+struct varobj_item
 {
   /* Name of this item.  */
   std::string name;
 
   /* Value of this item.  */
-  struct value *value;
-} varobj_item;
-
-struct varobj_iter_ops;
+  value_ref_ptr value;
+};
 
 /* A dynamic varobj iterator "class".  */
 
 struct varobj_iter
 {
-  /* The 'vtable'.  */
-  const struct varobj_iter_ops *ops;
+public:
 
-  /* The varobj this iterator is listing children for.  */
-  struct varobj *var;
+  virtual ~varobj_iter () = default;
 
-  /* The next raw index we will try to check is available.  If it is
-     equal to number_of_children, then we've already iterated the
-     whole set.  */
-  int next_raw_index;
+  virtual std::unique_ptr<varobj_item> next () = 0;
 };
 
-/* The vtable of the varobj iterator class.  */
-
-struct varobj_iter_ops
-{
-  /* Destructor.  Releases everything from SELF (but not SELF
-     itself).  */
-  void (*dtor) (struct varobj_iter *self);
-
-  /* Returns the next object or NULL if it has reached the end.  */
-  varobj_item *(*next) (struct varobj_iter *self);
-};
-
-/* Returns the next varobj or NULL if it has reached the end.  */
-
-#define varobj_iter_next(ITER) (ITER)->ops->next (ITER)
-
-/* Delete a varobj_iter object.  */
-
-#define varobj_iter_delete(ITER)              \
-  do                                          \
-    {                                         \
-      if ((ITER) != NULL)                     \
-       {                                      \
-         (ITER)->ops->dtor (ITER);            \
-         delete (ITER);                       \
-       }                                      \
-    } while (0)
+#endif /* VAROBJ_ITER_H */
This page took 0.04032 seconds and 4 git commands to generate.