#ifdef STATISTICS /* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Sort/include/Sort.h" namespace morpheo { namespace behavioural { namespace generic { namespace sort { #undef FUNCTION #define FUNCTION "Sort::statistics_allocation" void Sort::statistics_allocation (morpheo::behavioural::Parameters_Statistics * param_statistics) { log_printf(FUNC,Sort,FUNCTION,"Begin"); _stat = new Stat (static_cast(_name), "Sort", param_statistics); log_printf(FUNC,Sort,FUNCTION,"End"); }; }; // end namespace sort }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif