source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Group/include/Counters.h @ 2

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

Import Morpheo

File size: 872 bytes
Line 
1#ifdef STATISTICS
2#ifndef morpheo_behavioural_generic_group_Counters_h
3#define morpheo_behavioural_generic_group_Counters_h
4
5/*
6 * $Id$
7 *
8 * [ Description ]
9 *
10 */
11
12#include "Behavioural/Generic/Group/include/Parameters.h"
13
14namespace morpheo                    {
15namespace behavioural                {
16namespace generic                    {
17namespace group                      {
18
19  class Counters
20  {
21  public : uint32_t _nb_cycle_none_use  ;
22  public : uint32_t _nb_cycle_full_use  ;
23  public : uint32_t _nb_cycle_normal_use;
24  public : uint32_t _nb_use             ;
25
26  public : Counters  (Parameters parameters);
27  public : Counters  (Counters & counters);
28  public : ~Counters ();
29
30  };// end class counters
31 
32}; // end namespace group
33}; // end namespace generic
34}; // end namespace behavioural         
35}; // end namespace morpheo             
36
37#endif
38#endif
Note: See TracBrowser for help on using the repository browser.