#ifdef STATISTICS /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Statistics.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Statistics::Statistics" Statistics::Statistics (string name , Parameters_Statistics * parameters_statistics): _name (name ), _parameters_statistics (parameters_statistics) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); _nb_statistics = 0; _period_current = 0; log_printf(FUNC,Behavioural,FUNCTION,"End"); }; #undef FUNCTION #define FUNCTION "Statistics::~Statistics" Statistics::~Statistics () { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; }; // end namespace behavioural }; // end namespace morpheo #endif