/* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Parameters.h" #include using namespace std; namespace morpheo { namespace behavioural { namespace generic { namespace victim { namespace victim_pseudo_lru { string Parameters::print (uint32_t depth) { string tab = string(depth,'\t'); ostringstream msg; msg << tab << "" << endl << tab << "\t" << endl << tab << "\t" << endl << tab << "\t" << endl << tab << "\t" << endl << tab << "" << endl; return msg.str(); }; ostream& operator<< (ostream& output_stream , morpheo::behavioural::generic::victim::victim_pseudo_lru::Parameters & x) { output_stream << x.print(0); return output_stream; }; }; // end namespace victim_pseudo_lru }; // end namespace victim }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo