/* * $Id: Signal_print.cpp 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Signal.h" namespace morpheo { namespace behavioural { std::ostream& operator<< (std::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 : " << std::hex << x._sc_signal << " - " << x._sc_signal_map << std::dec; log_printf(FUNC,Behavioural,"operator<<","End"); return output_stream; }; }; // end namespace behavioural }; // end namespace morpheo