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

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

Import Morpheo

File size: 596 bytes
Line 
1#ifdef STATISTICS
2
3/*
4 * $Id$
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/include/Statistics.h"
11
12namespace morpheo              {
13namespace behavioural          {
14
15  Statistics::Statistics  (string                name                 ,
16                           Parameters_Statistics parameters_statistics):
17    _name                  (name                 ),
18    _parameters_statistics (parameters_statistics)
19  {
20    _nb_statistics  = 0;
21    _period_current = 0;
22  };
23 
24  Statistics::~Statistics ()
25  {
26  };
27 
28
29}; // end namespace behavioural         
30}; // end namespace morpheo             
31
32#endif
Note: See TracBrowser for help on using the repository browser.