/* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Select/Pseudo_LRU/include/Parameters.h" #include using namespace std; namespace morpheo { namespace behavioural { namespace generic { namespace select { namespace 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::select::pseudo_lru::Parameters & x) { output_stream << x.print(0); return output_stream; }; }; // end namespace pseudo_lru }; // end namespace select }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo