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