/* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Signal.h" namespace morpheo { namespace behavioural { ostream& operator<< (ostream& output_stream, morpheo::behavioural::Signal & x) { log_printf(FUNC,Behavioural,"operator<<","Begin"); output_stream << x._name ; output_stream << "\t{" << x._size << "}\t" << toString(x._direction) << "\t" << toString(x._presence_port) << "sc_signal : " << hex << x._sc_signal << " - " << x._sc_signal_map << dec; log_printf(FUNC,Behavioural,"operator<<","End"); return output_stream; }; }; // end namespace behavioural }; // end namespace morpheo