source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Parameters_Statistics.cpp @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 940 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id: Parameters_Statistics.cpp 81 2008-04-15 18:40:01Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/include/Parameters_Statistics.h"
10
11namespace morpheo              {
12namespace behavioural          {
13
14
15#undef  FUNCTION
16#define FUNCTION "Parameters_Statistics::Parameters_Statistics"
17  Parameters_Statistics::Parameters_Statistics  (uint32_t   nb_cycle_before_begin,
18                                                 uint32_t   period_save          ):
19    _nb_cycle_before_begin (nb_cycle_before_begin),
20    _period_save           (period_save          )
21  {
22    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
23    log_printf(FUNC,Behavioural,FUNCTION,"End");
24  };
25
26#undef  FUNCTION
27#define FUNCTION "Parameters_Statistics::~Parameters_Statistics" 
28  Parameters_Statistics::~Parameters_Statistics () 
29  {
30    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
31    log_printf(FUNC,Behavioural,FUNCTION,"End");
32  };
33
34}; // end namespace behavioural         
35}; // end namespace morpheo             
36#endif
Note: See TracBrowser for help on using the repository browser.