| 1 | /* |
|---|
| 2 | * $Id: Parameters_print.cpp 81 2008-04-15 18:40:01Z rosiere $ |
|---|
| 3 | * |
|---|
| 4 | * [ Description ] |
|---|
| 5 | * |
|---|
| 6 | */ |
|---|
| 7 | |
|---|
| 8 | #include "Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Parameters.h" |
|---|
| 9 | #include "Behavioural/include/XML.h" |
|---|
| 10 | #include <sstream> |
|---|
| 11 | |
|---|
| 12 | namespace morpheo { |
|---|
| 13 | namespace behavioural { |
|---|
| 14 | namespace generic { |
|---|
| 15 | namespace victim { |
|---|
| 16 | namespace victim_pseudo_lru { |
|---|
| 17 | |
|---|
| 18 | std::string Parameters::print (uint32_t depth) |
|---|
| 19 | { |
|---|
| 20 | XML xml ("victim_pseudo_lru"); |
|---|
| 21 | |
|---|
| 22 | xml.balise_open("victim_pseudo_lru"); |
|---|
| 23 | xml.singleton_begin("nb_entity "); xml.attribut("value",toString(_nb_entity )); xml.singleton_end(); |
|---|
| 24 | xml.singleton_begin("nb_access "); xml.attribut("value",toString(_nb_access )); xml.singleton_end(); |
|---|
| 25 | // xml.singleton_begin("nb_update "); xml.attribut("value",toString(_nb_update )); xml.singleton_end(); |
|---|
| 26 | xml.singleton_begin("size_table "); xml.attribut("value",toString(_size_table )); xml.singleton_end(); |
|---|
| 27 | xml.singleton_begin("table_global"); xml.attribut("value",toString(_table_global)); xml.singleton_end(); |
|---|
| 28 | xml.balise_close(); |
|---|
| 29 | |
|---|
| 30 | return xml.get_body(depth); |
|---|
| 31 | }; |
|---|
| 32 | |
|---|
| 33 | std::ostream& operator<< (std::ostream& output_stream , |
|---|
| 34 | morpheo::behavioural::generic::victim::victim_pseudo_lru::Parameters & x) |
|---|
| 35 | { |
|---|
| 36 | output_stream << x.print(0); |
|---|
| 37 | |
|---|
| 38 | return output_stream; |
|---|
| 39 | }; |
|---|
| 40 | |
|---|
| 41 | }; // end namespace victim_pseudo_lru |
|---|
| 42 | }; // end namespace victim |
|---|
| 43 | }; // end namespace generic |
|---|
| 44 | }; // end namespace behavioural |
|---|
| 45 | }; // end namespace morpheo |
|---|