#ifdef POSITION /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Position.h" namespace morpheo { namespace behavioural { ostream& operator<< (ostream& output_stream, morpheo::behavioural::Position & x) { output_stream << x.get_entity () << endl; output_stream << x.get_component () << endl; return output_stream; }; }; // end namespace behavioural }; // end namespace morpheo #endif