Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / StatisticsTargets.ct
index 9bb386a..9b8d439 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2009 
+// Copyright (C) 2009
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 // Custom includes
 
 #define prefix_
-///////////////////////////////ct.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
-///////////////////////////////////////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 // senf::detail::StatisticsLogger
 
 template <class Stream, class Area, class Level>
 prefix_ void senf::detail::StatisticsLogger<Stream,Area,Level>::operator()(float min,
                                                                            float avg,
-                                                                           float max)
+                                                                           float max,
+                                                                           float dev)
 {
-    SENF_LOG_TPL((StatisticsStream)(Stream)(Area)(Level)(label << min << " " << avg << " " << max));
+    SENF_LOG_TPL((StatisticsStream)(Stream)(Area)(Level)(
+                     label << min << ' ' << avg << ' ' << max << ' ' << dev));
 }
 
-///////////////////////////////ct.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f