source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/src/Parameters_print.cpp

Last change on this file was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 1.4 KB
RevLine 
[10]1/*
2 * $Id: Parameters_print.cpp 81 2008-04-15 18:40:01Z rosiere $
3 *
[75]4 * [ Description ]
[10]5 *
6 */
7
[15]8#include "Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Parameters.h"
[75]9#include "Behavioural/include/XML.h"
[10]10#include <sstream>
11
12namespace morpheo {
13namespace behavioural {
14namespace generic {
15namespace victim {
[15]16namespace victim_pseudo_lru {
[10]17
[75]18  std::string Parameters::print (uint32_t depth)
[10]19  {
[75]20    XML xml ("victim_pseudo_lru");
21
22    xml.balise_open("victim_pseudo_lru");
[78]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();
[75]28    xml.balise_close();
29
30    return xml.get_body(depth);
[10]31  };
32
[75]33  std::ostream& operator<< (std::ostream& output_stream ,
34                            morpheo::behavioural::generic::victim::victim_pseudo_lru::Parameters & x)
[10]35  {
36    output_stream << x.print(0);
37   
38    return output_stream;
39  };
40
[15]41}; // end namespace victim_pseudo_lru
[10]42}; // end namespace victim
43}; // end namespace generic
44}; // end namespace behavioural
45}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.