Main Page   Class Hierarchy   Compound List   File List   Compound Members   File Members  

stats.C File Reference

#include "stats.h"
#include <algorithm>

Go to the source code of this file.

Functions

ostream& operator<< (ostream &os, const Stats &stats)


Function Documentation

ostream & operator<< ( ostream & os,
const Stats & stats )
 

Definition at line 92 of file stats.C.

00092                                            {
00093 switch (stats.configuration_.format()) {
00094   case Configuration::DATE:
00095     stats.print_dates(os);
00096     break;
00097   case Configuration::PATH:
00098     stats.print_paths(os);
00099     break;
00100   case Configuration::DOMAIN:
00101     stats.print_domains(os);
00102     break;
00103   case Configuration::NONE:
00104     break;
00105   }
00106 return os;
00107 }


httpstats-stage04 [ 7 April, 2001]