#ifdef STATISTICS #ifndef morpheo_behavioural_Parameters_Statistics_h #define morpheo_behavioural_Parameters_Statistics_h /* * $Id: Parameters_Statistics.h 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #include "Common/include/Debug.h" #include namespace morpheo { namespace behavioural { class Parameters_Statistics { // -----[ fields ]---------------------------------------------------- // Constant public : const uint32_t _nb_cycle_before_begin; // nb cycle before the begining of statistics public : const uint32_t _period_save; // period between two save // -----[ methods ]--------------------------------------------------- public : Parameters_Statistics (uint32_t nb_cycle_before_begin, uint32_t period_save ); public : ~Parameters_Statistics (); }; }; // end namespace behavioural }; // end namespace morpheo #endif #endif