#ifdef POSITION /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Entity.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Entity::set_comment" void Entity::set_comment (std::string comment) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); _comment = _comment + comment; log_printf(FUNC,Behavioural,FUNCTION,"End"); }; }; // end namespace behavioural }; // end namespace morpheo #endif