source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Multi_Banked/src/Statistics.cpp @ 57

Last change on this file since 57 was 57, checked in by rosiere, 17 years ago
  • VHDL - RegisterFile_Multi_Banked (only partial_crossbar)
  • SystemC - modif Component, interface and co -> ajout du type Tusage_T pour instancier un coposant mais ne demander que le VHDL ou le systemC.
  • Séminaire interne
File size: 1.2 KB
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/RegisterFile/RegisterFile_Multi_Banked/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace generic {
14namespace registerfile {
15namespace registerfile_multi_banked {
16
17
18  Statistics::Statistics (string                                      name                       ,
19                          morpheo::behavioural::Parameters_Statistics * parameters_statistics      ,
20                          Parameters                                  * parameters
21                          ) :
22    morpheo::behavioural::Statistics(name                  ,
23                                     parameters_statistics ),
24    _parameters(parameters)
25  {
26    log_printf(FUNC,RegisterFile_Multi_Banked,"Statistics","Begin");
27    log_printf(FUNC,RegisterFile_Multi_Banked,"Statistics","End");
28  };
29 
30  Statistics::~Statistics () 
31  { 
32    log_printf(FUNC,RegisterFile_Multi_Banked,"~Statistics","Begin");
33    log_printf(FUNC,RegisterFile_Multi_Banked,"~Statistics","End");
34  };
35
36}; // end namespace registerfile_multi_banked
37}; // end namespace registerfile
38}; // end namespace generic
39
40}; // end namespace behavioural
41}; // end namespace morpheo             
42#endif
Note: See TracBrowser for help on using the repository browser.