/* * $Id: XML_header.cpp 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/XML.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "XML::header" void XML::header (std::string encoding) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); time_t current_time; time (¤t_time); std::string str_time = ctime (¤t_time ); std::string str; str = "\n"; str += "\n"; str += "\n"; str += "\n"; _body = str + _body; log_printf(FUNC,Behavioural,FUNCTION,"End"); }; }; // end namespace behavioural }; // end namespace morpheo