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