/* * $Id: XML_text.cpp 88 2008-12-10 18:31:39Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/XML.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "XML::text" bool XML::text (std::string text) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); _body += text; // +"\n"; log_printf(FUNC,Behavioural,FUNCTION,"End"); return true; }; }; // end namespace behavioural }; // end namespace morpheo