source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Parameters.h @ 75

Last change on this file since 75 was 75, checked in by rosiere, 16 years ago

Update all component (except front_end) to :

  • new statistics model
  • no namespace std
File size: 1.5 KB
Line 
1#ifndef morpheo_behavioural_generic_victim_victim_pseudo_lru_Parameters_h
2#define morpheo_behavioural_generic_victim_victim_pseudo_lru_Parameters_h
3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Parameters.h"
12#include <math.h>
13
14namespace morpheo {
15namespace behavioural {
16namespace generic {
17namespace victim {
18namespace victim_pseudo_lru {
19
20
21  class Parameters : public morpheo::behavioural::Parameters
22  {
23    //-----[ fields ]------------------------------------------------------------
24  public : const uint32_t _nb_entity ; // number of entity
25  public : const uint32_t _nb_access ; // number of port to select an entity
26  public : const uint32_t _nb_update ; // number of port to update the internal entity
27  public : const uint32_t _size_table; // Size of victim_pseudo_lru's table
28
29    //-----[ methods ]-----------------------------------------------------------
30  public : Parameters  (uint32_t nb_entity ,
31                        uint32_t nb_access ,
32                        uint32_t nb_update ,
33                        uint32_t size_table);
34  public : Parameters  (Parameters & param) ;
35  public : ~Parameters () ;
36
37  public :        std::string   msg_error  (void);
38  public :        std::string   print      (uint32_t depth);
39  public : friend std::ostream& operator<< (std::ostream& output_stream,
40                                            morpheo::behavioural::generic::victim::victim_pseudo_lru::Parameters & x);
41  };
42
43}; // end namespace victim_pseudo_lru
44}; // end namespace victim
45}; // end namespace generic
46
47}; // end namespace behavioural
48}; // end namespace morpheo             
49
50#endif
Note: See TracBrowser for help on using the repository browser.