source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Shifter/include/Statistics.h @ 2

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

Import Morpheo

File size: 1.5 KB
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_generic_shifter_Statistics_h
3#define morpheo_behavioural_generic_shifter_Statistics_h
4
5/*
6 * $Id$
7 *
8 * [ Description ]
9 *
10 */
11
12#include "Behavioural/include/Statistics.h"
13#include "Behavioural/include/Parameters_Statistics.h"
14//#include "Behavioural/Generic/Group/include/Statistics.h"
15#include "Behavioural/Generic/Shifter/include/Parameters.h"
16
17//using namespace morpheo::behavioural::generic::group;
18
19namespace morpheo                    {
20namespace behavioural {
21namespace generic {
22namespace shifter {
23
24
25  class Statistics : public morpheo::behavioural::Statistics
26  {
27    // -----[ fields ]----------------------------------------------------
28  private  : const Parameters                                   _parameters;
29
30    // -----[ methods ]---------------------------------------------------
31  public   : Statistics  (string                                      name                       ,
32                          morpheo::behavioural::Parameters_Statistics parameters_statistics      ,
33                          Parameters                                  parameters
34                          );
35//public   : Statistics  (Statistics & stat);
36  public   : ~Statistics () ;
37   
38  public   : string   print_body (uint32_t depth);
39  public   : string   print      (uint32_t depth);
40  public   : void     add        ();
41
42  public   : friend ostream& operator<< (ostream& output_stream,
43                                         const Statistics & x);
44
45  };
46
47}; // end namespace shifter
48}; // end namespace generic
49
50}; // end namespace behavioural
51}; // end namespace morpheo
52
53#endif
54#endif
Note: See TracBrowser for help on using the repository browser.