62a63
> #include "base/stats/output.hh"
64d64
< #include "base/stats/visit.hh"
93c93
< visit(Visit &visitor)
---
> visit(Output &visitor)
741c741
< void visit(Visit &visitor) { visitor.visit(*this); }
---
> void visit(Output &visitor) { visitor.visit(*this); }
2936,2951c2936
< /**
< * Enable the statistics package. Before the statistics package is
< * enabled, all statistics must be created and initialized and once
< * the package is enabled, no more statistics can be created.
< */
< void enable();
<
< /**
< * Prepare all stats for data access. This must be done before
< * dumping and serialization.
< */
< void prepare();
<
< /**
< * Dump all statistics data to the registered outputs
< */
---
> /** Dump all statistics data to the registered outputs */
2952a2938
> void reset();
2955,2958d2940
< * Reset all statistics to the base state
< */
< void reset();
< /**