source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Meta_Predictor_Glue/include/Statistics.h @ 48

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

Modification des Makefile : pas de creation inutile de shell

File size: 2.1 KB
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_meta_predictor_glue_Statistics_h
3#define morpheo_behavioural_core_multi_front_end_front_end_prediction_unit_direction_meta_predictor_meta_predictor_glue_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/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Meta_Predictor_Glue/include/Parameters.h"
17
18//using namespace morpheo::behavioural::generic::group;
19
20namespace morpheo                    {
21namespace behavioural {
22namespace core {
23namespace multi_front_end {
24namespace front_end {
25namespace prediction_unit {
26namespace direction {
27
28namespace meta_predictor {
29namespace meta_predictor_glue {
30
31
32  class Statistics : public morpheo::behavioural::Statistics
33  {
34    // -----[ fields ]----------------------------------------------------
35  private  : const Parameters                                   _parameters;
36
37    // -----[ methods ]---------------------------------------------------
38  public   : Statistics  (string                                      name                       ,
39                          morpheo::behavioural::Parameters_Statistics parameters_statistics      ,
40                          Parameters                                  parameters
41                          );
42//public   : Statistics  (Statistics & stat);
43  public   : ~Statistics () ;
44   
45  public   : string   print_body (uint32_t depth);
46  public   : string   print      (uint32_t depth);
47  public   : void     add        ();
48
49  public   : friend ostream& operator<< (ostream& output_stream,
50                                         const Statistics & x);
51
52  };
53
54}; // end namespace meta_predictor_glue
55}; // end namespace meta_predictor
56
57}; // end namespace core
58}; // end namespace multi_front_end
59}; // end namespace front_end
60}; // end namespace prediction_unit
61}; // end namespace direction
62
63
64}; // end namespace behavioural
65}; // end namespace morpheo
66
67#endif
68#endif
Note: See TracBrowser for help on using the repository browser.