#ifdef POSITION /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Position.h" namespace morpheo { namespace behavioural { string Position::get_entity (void) { ostringstream text; text << *(_entity); return text.str(); }; }; // end namespace behavioural }; // end namespace morpheo #endif