source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Read_queue/src/Statistics.cpp @ 54

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

Ajout de Read_queue

  • seulement en systemC
  • validé
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/Multi_Read_unit/Read_unit/Read_queue/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_execute_loop {
15namespace execute_loop {
16namespace multi_read_unit {
17namespace read_unit {
18namespace read_queue {
19
20
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,Read_queue,"Statistics","Begin");
30    log_printf(FUNC,Read_queue,"Statistics","End");
31  };
32 
33  Statistics::~Statistics () 
34  { 
35    log_printf(FUNC,Read_queue,"~Statistics","Begin");
36    log_printf(FUNC,Read_queue,"~Statistics","End");
37  };
38
39}; // end namespace read_queue
40}; // end namespace read_unit
41}; // end namespace multi_read_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.