#ifdef STATISTICS /* * $Id: Parameters_Statistics.cpp 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Parameters_Statistics.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Parameters_Statistics::Parameters_Statistics" Parameters_Statistics::Parameters_Statistics (uint32_t nb_cycle_before_begin, uint32_t period_save ): _nb_cycle_before_begin (nb_cycle_before_begin), _period_save (period_save ) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; #undef FUNCTION #define FUNCTION "Parameters_Statistics::~Parameters_Statistics" Parameters_Statistics::~Parameters_Statistics () { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; }; // end namespace behavioural }; // end namespace morpheo #endif