source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Pseudo_LRU/src/Parameters.cpp @ 2

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

Import Morpheo

File size: 906 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Generic/Select/Pseudo_LRU/include/Parameters.h"
9
10namespace morpheo {
11namespace behavioural {
12namespace generic {
13namespace select {
14namespace pseudo_lru {
15
16
17  Parameters::Parameters (uint32_t nb_entity ,
18                          uint32_t nb_access ,
19                          uint32_t nb_update ,
20                          uint32_t size_table):
21    _nb_entity  (nb_entity ),
22    _nb_access  (nb_access ),
23    _nb_update  (nb_update ),
24    _size_table (size_table)
25  {
26    test();
27  };
28 
29  Parameters::Parameters (Parameters & param):
30    _nb_entity  (param._nb_entity ),
31    _nb_access  (param._nb_access ),
32    _nb_update  (param._nb_update ),
33    _size_table (param._size_table)
34  { 
35    test();
36  };
37
38  Parameters::~Parameters () 
39  { };
40
41}; // end namespace pseudo_lru
42}; // end namespace select
43}; // end namespace generic
44
45}; // end namespace behavioural
46}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.