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