summaryrefslogtreecommitdiff
path: root/src/util/stats.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/stats.h')
-rw-r--r--src/util/stats.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/util/stats.h b/src/util/stats.h
index aabf04dc0..082bdfeaa 100644
--- a/src/util/stats.h
+++ b/src/util/stats.h
@@ -558,12 +558,26 @@ public:
* Get an iterator to the beginning of the range of the set of active
* (registered) statistics.
*/
+ const_iterator begin_() const;
+
+ /**
+ * Get an iterator to the beginning of the range of the set of active
+ * (registered) statistics. This version uses the "current"
+ * statistics registry.
+ */
static const_iterator begin();
/**
* Get an iterator to the end of the range of the set of active
* (registered) statistics.
*/
+ const_iterator end_() const;
+
+ /**
+ * Get an iterator to the end of the range of the set of active
+ * (registered) statistics. This version uses the "current"
+ * statistics registry.
+ */
static const_iterator end();
};/* class StatisticsRegistry */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback