source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Select_Priority_Fixed/include/Statistics.h @ 57

Last change on this file since 57 was 57, checked in by rosiere, 17 years ago
  • VHDL - RegisterFile_Multi_Banked (only partial_crossbar)
  • SystemC - modif Component, interface and co -> ajout du type Tusage_T pour instancier un coposant mais ne demander que le VHDL ou le systemC.
  • Séminaire interne
File size: 1.7 KB
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_generic_select_select_priority_fixed_Statistics_h
3#define morpheo_behavioural_generic_select_select_priority_fixed_Statistics_h
4
5/*
6 * $Id$
7 *
8 * [ Description ]
9 *
10 */
11
12#include "Common/include/Debug.h"
13#include "Behavioural/include/Statistics.h"
14#include "Behavioural/include/Parameters_Statistics.h"
15//#include "Behavioural/Generic/Group/include/Statistics.h"
16#include "Behavioural/Generic/Select/Select_Priority_Fixed/include/Parameters.h"
17
18//using namespace morpheo::behavioural::generic::group;
19
20namespace morpheo                    {
21namespace behavioural {
22namespace generic {
23namespace select {
24namespace select_priority_fixed {
25
26
27  class Statistics : public morpheo::behavioural::Statistics
28  {
29    // -----[ fields ]----------------------------------------------------
30  private  : const Parameters                                 * _parameters;
31
32    // -----[ methods ]---------------------------------------------------
33  public   : Statistics  (string                                      name                       ,
34                          morpheo::behavioural::Parameters_Statistics * parameters_statistics      ,
35                          Parameters                                  * parameters
36                          );
37//public   : Statistics  (Statistics & stat);
38  public   : ~Statistics () ;
39   
40  public   : string   print_body (uint32_t depth);
41  public   : string   print      (uint32_t depth);
42  public   : void     add        ();
43
44  public   : friend ostream& operator<< (ostream& output_stream,
45                                         const Statistics & x);
46
47  };
48
49}; // end namespace select_priority_fixed
50}; // end namespace select
51}; // end namespace generic
52
53}; // end namespace behavioural
54}; // end namespace morpheo
55
56#endif
57#endif
Note: See TracBrowser for help on using the repository browser.