| 1 | /* |
|---|
| 2 | * $Id: Parameters.cpp 88 2008-12-10 18:31:39Z rosiere $ |
|---|
| 3 | * |
|---|
| 4 | * [ Description ] |
|---|
| 5 | * |
|---|
| 6 | */ |
|---|
| 7 | |
|---|
| 8 | #include "Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Parameters.h" |
|---|
| 9 | |
|---|
| 10 | namespace morpheo { |
|---|
| 11 | namespace behavioural { |
|---|
| 12 | namespace generic { |
|---|
| 13 | namespace victim { |
|---|
| 14 | namespace victim_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 | bool table_global): |
|---|
| 22 | _nb_entity (nb_entity ), |
|---|
| 23 | _nb_access (nb_access ), |
|---|
| 24 | // _nb_update (nb_update ), |
|---|
| 25 | _size_table ((table_global == true)?1:size_table), |
|---|
| 26 | _table_global (table_global), |
|---|
| 27 | _size_address (size_table) |
|---|
| 28 | { |
|---|
| 29 | test(); |
|---|
| 30 | }; |
|---|
| 31 | |
|---|
| 32 | // Parameters::Parameters (Parameters & param): |
|---|
| 33 | // _nb_entity (param._nb_entity ), |
|---|
| 34 | // _nb_access (param._nb_access ), |
|---|
| 35 | // // _nb_update (param._nb_update ), |
|---|
| 36 | // _size_table (param._size_table), |
|---|
| 37 | // _table_global(param._table_global), |
|---|
| 38 | // _size_address(param._size_address) |
|---|
| 39 | // { |
|---|
| 40 | // test(); |
|---|
| 41 | // }; |
|---|
| 42 | |
|---|
| 43 | Parameters::~Parameters () |
|---|
| 44 | { |
|---|
| 45 | }; |
|---|
| 46 | |
|---|
| 47 | void Parameters::copy (void) |
|---|
| 48 | { |
|---|
| 49 | }; |
|---|
| 50 | |
|---|
| 51 | }; // end namespace victim_pseudo_lru |
|---|
| 52 | }; // end namespace victim |
|---|
| 53 | }; // end namespace generic |
|---|
| 54 | |
|---|
| 55 | }; // end namespace behavioural |
|---|
| 56 | }; // end namespace morpheo |
|---|