/* * $Id: XML_header.cpp 137 2010-02-16 12:35:48Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/XML.h" #include "Common/include/Environment.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "XML::header" void XML::header (std::string encoding) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); environment (); time_t current_time; time (¤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