source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/src/Statistics.cpp @ 53

Last change on this file since 53 was 53, checked in by rosiere, 17 years ago
  • Banc de registre multi banc
  • Banc de registre générique.
File size: 1.0 KB
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/@DIRECTORY/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13@NAMESPACE_BEGIN
14
15#undef  FUNCTION
16#define FUNCTION "@COMPONENT::Statistics"
17  Statistics::Statistics (string                                        name                       ,
18                          morpheo::behavioural::Parameters_Statistics * parameters_statistics      ,
19                          Parameters                                  * parameters
20                          ) :
21    morpheo::behavioural::Statistics(name                  ,
22                                     parameters_statistics ),
23    _parameters(parameters)
24  {
25    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
26    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
27  };
28 
29#undef  FUNCTION
30#define FUNCTION "@COMPONENT::~Statistics"
31  Statistics::~Statistics () 
32  { 
33    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
34    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
35  };
36
37@NAMESPACE_END
38}; // end namespace behavioural
39}; // end namespace morpheo             
40#endif
Note: See TracBrowser for help on using the repository browser.