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

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

Interface normalisé
Début du banc de registres multi niveaux

File size: 1.3 KB
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/RegisterFile/RegisterFile_Multi_Banked/RegisterFile_Multi_Banked_Glue/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace generic {
14namespace registerfile{
15namespace registerfile_multi_banked {
16namespace registerfile_multi_banked_glue {
17
18
19  Statistics::Statistics (string                                      name                       ,
20                          morpheo::behavioural::Parameters_Statistics parameters_statistics      ,
21                          Parameters                                  parameters
22                          ) :
23    morpheo::behavioural::Statistics(name                  ,
24                                     parameters_statistics ),
25    _parameters(parameters)
26  {
27    log_printf(FUNC,RegisterFile_Multi_Banked_Glue,"Statistics","Begin");
28    log_printf(FUNC,RegisterFile_Multi_Banked_Glue,"Statistics","End");
29  };
30 
31  Statistics::~Statistics () 
32  { 
33    log_printf(FUNC,RegisterFile_Multi_Banked_Glue,"~Statistics","Begin");
34    log_printf(FUNC,RegisterFile_Multi_Banked_Glue,"~Statistics","End");
35  };
36
37}; // end namespace registerfile_multi_banked_glue
38}; // end namespace registerfile_multi_banked
39}; // end namespace registerfile
40}; // end namespace generic
41
42}; // end namespace behavioural
43}; // end namespace morpheo             
44#endif
Note: See TracBrowser for help on using the repository browser.