#ifdef STATISTICS /* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Shifter/include/Statistics.h" #include using namespace std; namespace morpheo { namespace behavioural { namespace generic { namespace shifter { string Statistics::print_body (uint32_t depth) { string tab = string(depth,'\t'); ostringstream msg; msg << tab << ""; return msg.str(); }; }; // end namespace shifter }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif