/* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Component.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Component::operator<<" std::ostream& operator<< (std::ostream& output_stream, morpheo::behavioural::Component & x) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); output_stream << x.get_entity () << std::endl; output_stream << x.get_component () << std::endl; log_printf(FUNC,Behavioural,FUNCTION,"End"); return output_stream; }; }; // end namespace behavioural }; // end namespace morpheo