source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Counter/src/Statistics.cpp @ 2

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 988 bytes
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/Counter/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace generic {
14namespace counter {
15
16
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,Counter,"Statistics","Begin");
26    log_printf(FUNC,Counter,"Statistics","End");
27  };
28 
29  Statistics::~Statistics () 
30  { 
31    log_printf(FUNC,Counter,"~Statistics","Begin");
32    log_printf(FUNC,Counter,"~Statistics","End");
33  };
34
35}; // end namespace counter
36}; // end namespace generic
37
38}; // end namespace behavioural
39}; // end namespace morpheo             
40#endif
Note: See TracBrowser for help on using the repository browser.