#ifdef STATISTICS /* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Group/include/Statistics.h" #include using namespace std; namespace morpheo { namespace behavioural { namespace generic { namespace group { 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::group::Statistics & x) { output_stream << x.print(0); return output_stream; }; }; // end namespace group }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif