source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Queue/src/Statistics.cpp @ 67

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

Ajout d'un nouveau composant : fifo generic (un port lecture et un port ecriture).

File size: 1.0 KB
Line 
1#ifdef STATISTICS
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/Queue/include/Statistics.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace generic {
14namespace queue {
15
16
17#undef  FUNCTION
18#define FUNCTION "Queue::Statistics"
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,Queue,FUNCTION,"Begin");
28    log_printf(FUNC,Queue,FUNCTION,"End");
29  };
30 
31#undef  FUNCTION
32#define FUNCTION "Queue::~Statistics"
33  Statistics::~Statistics () 
34  { 
35    log_printf(FUNC,Queue,FUNCTION,"Begin");
36    log_printf(FUNC,Queue,FUNCTION,"End");
37  };
38
39}; // end namespace queue
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.