#ifdef STATISTICS /* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Select/Pseudo_LRU/include/Statistics.h" #include using namespace std; namespace morpheo { namespace behavioural { namespace generic { namespace select { namespace pseudo_lru { string Statistics::print (uint32_t depth) { string tab = string(depth,'\t'); ostringstream msg; msg << tab << "" << endl << print_body (depth+1) << tab << "" << endl; return msg.str(); }; ostream& operator<< (ostream& output_stream , morpheo::behavioural::generic::select::pseudo_lru::Statistics & x) { output_stream << x.print(0); return output_stream; }; }; // end namespace pseudo_lru }; // end namespace select }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif