X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FStatisticAccumulator.cti;h=d8ed082d5c5d0473a9e4c11afeed0fea65f63f99;hb=refs%2Fheads%2Fmaster;hp=3234b53c5af3c264a7bc40fbbcb4ff0e210ef328;hpb=ab7ff164ab5ae711ec09ce2b24228510f1ffdcff;p=senf.git diff --git a/senf/Utils/StatisticAccumulator.cti b/senf/Utils/StatisticAccumulator.cti index 3234b53..d8ed082 100644 --- a/senf/Utils/StatisticAccumulator.cti +++ b/senf/Utils/StatisticAccumulator.cti @@ -23,7 +23,9 @@ // All Rights Reserved. // // Contributor(s): -// Thorsten Horstmann +// Mathias Kretschmer +// Jens Moedeker + /** \file \brief StatisticAccumulator inline template implementation */ @@ -56,12 +58,6 @@ prefix_ float senf::StatisticAccumulator::avg() return count_ == 0 ? NAN : (sum_ / float(count_)); } -//template -//prefix_ senf::Statistics & senf::StatisticAccumulator::statistics() -//{ -// return stats_; -//} - template prefix_ float senf::StatisticAccumulator::last_avg() const