#include <cmath>
#include <functional>
#include <iosfwd>
-#include <limits>
#include <list>
#include <string>
#include <vector>
/* A namespace for all of the Statistics */
namespace Stats {
-typedef std::numeric_limits<Counter> CounterLimits;
-/* Contains the statistic implementation details */
//////////////////////////////////////////////////////////////////////
//
// Statistics Framework Base classes
#ifndef __BASE_STATS_TYPES_HH__
#define __BASE_STATS_TYPES_HH__
+#include <limits>
#include <vector>
#include "sim/host.hh"
/** vector of counters. */
typedef std::vector<Counter> VCounter;
+typedef std::numeric_limits<Counter> CounterLimits;
+
/** All results are doubles. */
typedef double Result;
/** vector of results. */