source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Parameters_Statistics.h @ 2

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 957 bytes
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_Parameters_Statistics_h
3#define morpheo_behavioural_Parameters_Statistics_h
4
5/*
6 * $Id$
7 *
8 * [ Description ]
9 *
10 */
11
12#include <stdint.h>
13using namespace std;
14
15namespace morpheo              {
16namespace behavioural          {
17
18  class Parameters_Statistics
19  {
20    // -----[ fields ]----------------------------------------------------
21    // Constant
22  public   : const uint32_t   _nb_cycle_before_begin; // nb cycle before the begining of statistics
23  public   : const uint32_t   _period_save;           // period between two save
24   
25    // -----[ methods ]---------------------------------------------------
26  public   :                  Parameters_Statistics  (uint32_t   nb_cycle_before_begin,
27                                                      uint32_t   period_save          );
28  public   :                  ~Parameters_Statistics ();
29  };
30
31}; // end namespace behavioural         
32}; // end namespace morpheo             
33
34#endif
35#endif
Note: See TracBrowser for help on using the repository browser.