source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Select_Priority_Fixed/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.1 KB
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/Select/Select_Priority_Fixed/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace generic {
14namespace select {
15namespace select_priority_fixed {
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,Select_Priority_Fixed,"Statistics","Begin");
27    log_printf(FUNC,Select_Priority_Fixed,"Statistics","End");
28  };
29 
30  Statistics::~Statistics () 
31  { 
32    log_printf(FUNC,Select_Priority_Fixed,"~Statistics","Begin");
33    log_printf(FUNC,Select_Priority_Fixed,"~Statistics","End");
34  };
35
36}; // end namespace select_priority_fixed
37}; // end namespace select
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.