source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/src/Statistics.cpp @ 60

Last change on this file since 60 was 60, checked in by rosiere, 17 years ago
File size: 1.3 KB
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_execute_loop {
15namespace execute_loop {
16namespace register_unit {
17
18
19#undef  FUNCTION
20#define FUNCTION "Register_unit::Statistics"
21  Statistics::Statistics (string                                        name                       ,
22                          morpheo::behavioural::Parameters_Statistics * parameters_statistics      ,
23                          Parameters                                  * parameters
24                          ) :
25    morpheo::behavioural::Statistics(name                  ,
26                                     parameters_statistics ),
27    _parameters(parameters)
28  {
29    log_printf(FUNC,Register_unit,FUNCTION,"Begin");
30    log_printf(FUNC,Register_unit,FUNCTION,"End");
31  };
32 
33#undef  FUNCTION
34#define FUNCTION "Register_unit::~Statistics"
35  Statistics::~Statistics () 
36  { 
37    log_printf(FUNC,Register_unit,FUNCTION,"Begin");
38    log_printf(FUNC,Register_unit,FUNCTION,"End");
39  };
40
41}; // end namespace register_unit
42}; // end namespace execute_loop
43}; // end namespace multi_execute_loop
44}; // end namespace core
45
46}; // end namespace behavioural
47}; // end namespace morpheo             
48#endif
Note: See TracBrowser for help on using the repository browser.