d06939e305fd00bce5578d8ed282c1ac0970b9d9
[senf.git] / senf / Utils / StatisticAccumulator.cti
1 // $Id$
2 //
3 // Copyright (C) 2010
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Thorsten Horstmann <thorsten.horstmann@fokus.fraunhofer.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief StatisticAccumulator inline template implementation */
25
26 // Custom includes
27
28
29 #define prefix_ inline
30 ///////////////////////////////cti.p///////////////////////////////////////
31
32 ///////////////////////////////////////////////////////////////////////////
33 // senf::StatisticAccumulator<T>
34
35 template <class T>
36 prefix_ T senf::StatisticAccumulator<T>::min()
37     const
38 {
39     return min_;
40 }
41
42 template <class T>
43 prefix_ T senf::StatisticAccumulator<T>::max()
44     const
45 {
46     return max_;
47 }
48
49 template <class T>
50 prefix_ float senf::StatisticAccumulator<T>::avg()
51     const
52 {
53     return count_ == 0 ? NAN : (sum_ / float(count_));
54 }
55
56 //template <class T>
57 //prefix_ senf::Statistics & senf::StatisticAccumulator<T>::statistics()
58 //{
59 //    return stats_;
60 //}
61
62 template <class T>
63 prefix_ float senf::StatisticAccumulator<T>::last_avg()
64     const
65 {
66     return last_avg_;
67 }
68
69 template <class T>
70 prefix_ boost::uint32_t senf::StatisticAccumulator<T>::count()
71     const
72 {
73     return count_;
74 }
75
76 ///////////////////////////////cti.e///////////////////////////////////////
77 #undef prefix_
78
79 \f
80 // Local Variables:
81 // mode: c++
82 // fill-column: 100
83 // comment-column: 40
84 // c-file-style: "senf"
85 // indent-tabs-mode: nil
86 // ispell-local-dictionary: "american"
87 // compile-command: "scons -U"
88 // End: