#ifdef STATISTICS /* * $Id: Core_statistics_deallocation.cpp 88 2008-12-10 18:31:39Z rosiere $ * * [ Description ] * */ #include "Behavioural/Core/include/Core.h" namespace morpheo { namespace behavioural { namespace core { #undef FUNCTION #define FUNCTION "Core::statistics_deallocation" void Core::statistics_deallocation (void) { log_begin(Core,FUNCTION); log_printf(INFO,Core,FUNCTION,_("<%s> : Generate Statistics file"),_name.c_str()); delete _stat; log_end(Core,FUNCTION); }; }; // end namespace core }; // end namespace behavioural }; // end namespace morpheo #endif