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

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

Import Morpheo

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