diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2003-10-21 15:45:48 -0400 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2003-10-21 15:45:48 -0400 |
commit | f600ac613e699927a0e9894b703f8839d61c60ef (patch) | |
tree | b4c34529f5bc798b6fc65db6eb05b553bb5386d9 | |
parent | e0b065ff7c10dada97f562f13d7676253d48e793 (diff) | |
download | gem5-f600ac613e699927a0e9894b703f8839d61c60ef.tar.xz |
statistics.hh:
change VectorDistProxy name to DistProxy - to be more consistent with other proxy namings.
base/statistics.hh:
change VectorDistProxy name to DistProxy - to be more consistent with other proxy namings.
--HG--
extra : convert_revision : c470c93cf598506be56312db52f6c528c213a149
-rw-r--r-- | base/statistics.hh | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/base/statistics.hh b/base/statistics.hh index bd70cf8a0..2ce37195f 100644 --- a/base/statistics.hh +++ b/base/statistics.hh @@ -1436,7 +1436,7 @@ class DistBase : public Stat }; template <typename T, template <typename T> class Storage, class Bin> -class VectorDistProxy; +class DistProxy; template <typename T, template <typename T> class Storage, class Bin> class VectorDistBase : public Stat @@ -1465,9 +1465,9 @@ class VectorDistBase : public Stat VectorDistBase() : Stat(true) { } ~VectorDistBase() { } - friend class VectorDistProxy<T, Storage, Bin>; - VectorDistProxy<T, Storage, Bin> operator[](int index); - const VectorDistProxy<T, Storage, Bin> operator[](int index) const; + friend class DistProxy<T, Storage, Bin>; + DistProxy<T, Storage, Bin> operator[](int index); + const DistProxy<T, Storage, Bin> operator[](int index) const; virtual size_t size() const { return bin.size(); } virtual bool zero() const { return false; } @@ -1475,7 +1475,7 @@ class VectorDistBase : public Stat }; template <typename T, template <typename T> class Storage, class Bin> -class VectorDistProxy : public Stat +class DistProxy : public Stat { protected: typedef Storage<T> storage_t; @@ -1495,11 +1495,11 @@ class VectorDistProxy : public Stat const storage_t *data() const { return cstat->data(index); } public: - VectorDistProxy(const VectorDistBase<T, Storage, Bin> &s, int i) + DistProxy(const VectorDistBase<T, Storage, Bin> &s, int i) : Stat(false), cstat(&s), index(i) {} - VectorDistProxy(const VectorDistProxy &sp) + DistProxy(const DistProxy &sp) : Stat(false), cstat(sp.cstat), index(sp.index) {} - const VectorDistProxy &operator=(const VectorDistProxy &sp) { + const DistProxy &operator=(const DistProxy &sp) { cstat = sp.cstat; index = sp.index; return *this; } @@ -1531,19 +1531,19 @@ class VectorDistProxy : public Stat }; template <typename T, template <typename T> class Storage, class Bin> -inline VectorDistProxy<T, Storage, Bin> +inline DistProxy<T, Storage, Bin> VectorDistBase<T, Storage, Bin>::operator[](int index) { assert (index >= 0 && index < size()); - return VectorDistProxy<T, Storage, Bin>(*this, index); + return DistProxy<T, Storage, Bin>(*this, index); } template <typename T, template <typename T> class Storage, class Bin> -inline const VectorDistProxy<T, Storage, Bin> +inline const DistProxy<T, Storage, Bin> VectorDistBase<T, Storage, Bin>::operator[](int index) const { assert (index >= 0 && index < size()); - return VectorDistProxy<T, Storage, Bin>(*this, index); + return DistProxy<T, Storage, Bin>(*this, index); } /** @@ -1554,7 +1554,7 @@ void VectorDistBase<T, Storage, Bin>::display(std::ostream &stream) const { for (int i = 0; i < size(); ++i) { - VectorDistProxy<T, Storage, Bin> proxy(*this, i); + DistProxy<T, Storage, Bin> proxy(*this, i); proxy.display(stream); } } |