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

Last change on this file since 62 was 50, checked in by rosiere, 17 years ago

Changement dans le répertoire "New_Component" afin que les composants nouvellement crées peuvent compiler

File size: 991 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 "Common/include/Debug.h"
13#include <stdint.h>
14using namespace std;
15
16namespace morpheo              {
17namespace behavioural          {
18
19  class Parameters_Statistics
20  {
21    // -----[ fields ]----------------------------------------------------
22    // Constant
23  public   : const uint32_t   _nb_cycle_before_begin; // nb cycle before the begining of statistics
24  public   : const uint32_t   _period_save;           // period between two save
25   
26    // -----[ methods ]---------------------------------------------------
27  public   :                  Parameters_Statistics  (uint32_t   nb_cycle_before_begin,
28                                                      uint32_t   period_save          );
29  public   :                  ~Parameters_Statistics ();
30  };
31
32}; // end namespace behavioural         
33}; // end namespace morpheo             
34
35#endif
36#endif
Note: See TracBrowser for help on using the repository browser.