/* * $Id: Interfaces_print.cpp 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Interfaces.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Interfaces::operator<<" std::ostream& operator<< (std::ostream& output_stream , morpheo::behavioural::Interfaces & x) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); output_stream << x.get_interface () << std::endl; log_printf(FUNC,Behavioural,FUNCTION,"End"); return output_stream; }; }; // end namespace behavioural }; // end namespace morpheo