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 128 of file stats.C.

00128                                            {
00129 switch (stats.configuration_.format()) {
00130   case Configuration::DATE:
00131     stats.print_dates(os);
00132     break;
00133   case Configuration::PATH:
00134     stats.print_paths(os);
00135     break;
00136   case Configuration::DOMAIN:
00137     stats.print_domains(os);
00138     break;
00139   }
00140 return os;
00141 }


httpstats-stage01 [ 7 April, 2001]