#ifdef STATISTICS #ifndef morpheo_behavioural_Parameters_Statistics_h #define morpheo_behavioural_Parameters_Statistics_h /* * $Id$ * * [ Description ] * */ #include using namespace std; 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