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

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

Modification des classes d'encapsulation des interfaces.
Stable sur tous les composants actuels

File size: 1.7 KB
RevLine 
[10]1#ifdef STATISTICS
[15]2#ifndef morpheo_behavioural_generic_select_select_priority_fixed_Statistics_h
3#define morpheo_behavioural_generic_select_select_priority_fixed_Statistics_h
[10]4
5/*
6 * $Id$
7 *
8 * [ Description ]
9 *
10 */
11
[44]12#include "Common/include/Debug.h"
[10]13#include "Behavioural/include/Statistics.h"
14#include "Behavioural/include/Parameters_Statistics.h"
15//#include "Behavioural/Generic/Group/include/Statistics.h"
[15]16#include "Behavioural/Generic/Select/Select_Priority_Fixed/include/Parameters.h"
[10]17
18//using namespace morpheo::behavioural::generic::group;
19
20namespace morpheo                    {
21namespace behavioural {
22namespace generic {
23namespace select {
[15]24namespace select_priority_fixed {
[10]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
[15]49}; // end namespace select_priority_fixed
[10]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.