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

Last change on this file since 60 was 60, checked in by rosiere, 17 years ago
File size: 1.4 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/Register_unit_Glue/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_execute_loop {
15namespace execute_loop {
16namespace register_unit {
17namespace register_unit_glue {
18
19
20#undef  FUNCTION
21#define FUNCTION "Register_unit_Glue::Statistics"
22  Statistics::Statistics (string                                        name                       ,
23                          morpheo::behavioural::Parameters_Statistics * parameters_statistics      ,
24                          Parameters                                  * parameters
25                          ) :
26    morpheo::behavioural::Statistics(name                  ,
27                                     parameters_statistics ),
28    _parameters(parameters)
29  {
30    log_printf(FUNC,Register_unit_Glue,FUNCTION,"Begin");
31    log_printf(FUNC,Register_unit_Glue,FUNCTION,"End");
32  };
33 
34#undef  FUNCTION
35#define FUNCTION "Register_unit_Glue::~Statistics"
36  Statistics::~Statistics () 
37  { 
38    log_printf(FUNC,Register_unit_Glue,FUNCTION,"Begin");
39    log_printf(FUNC,Register_unit_Glue,FUNCTION,"End");
40  };
41
42}; // end namespace register_unit_glue
43}; // end namespace register_unit
44}; // end namespace execute_loop
45}; // end namespace multi_execute_loop
46}; // end namespace core
47
48}; // end namespace behavioural
49}; // end namespace morpheo             
50#endif
Note: See TracBrowser for help on using the repository browser.