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