source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Select_Priority_Fixed/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.1 KB
RevLine 
[10]1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
[15]9#include "Behavioural/Generic/Select/Select_Priority_Fixed/include/Statistics.h"
[10]10
11namespace morpheo                    {
12namespace behavioural {
13namespace generic {
14namespace select {
[15]15namespace select_priority_fixed {
[10]16
17
18  Statistics::Statistics (string                                      name                       ,
[57]19                          morpheo::behavioural::Parameters_Statistics * parameters_statistics      ,
20                          Parameters                                  * parameters
[10]21                          ) :
22    morpheo::behavioural::Statistics(name                  ,
23                                     parameters_statistics ),
24    _parameters(parameters)
25  {
[15]26    log_printf(FUNC,Select_Priority_Fixed,"Statistics","Begin");
27    log_printf(FUNC,Select_Priority_Fixed,"Statistics","End");
[10]28  };
29 
30  Statistics::~Statistics () 
31  { 
[15]32    log_printf(FUNC,Select_Priority_Fixed,"~Statistics","Begin");
33    log_printf(FUNC,Select_Priority_Fixed,"~Statistics","End");
[10]34  };
35
[15]36}; // end namespace select_priority_fixed
[10]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.