/* * $Id: XML.cpp 124 2009-06-17 12:11:25Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/XML.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "XML::XML" XML::XML (std::string name) : _name (name) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); _filename_extension="xml"; log_printf(FUNC,Behavioural,FUNCTION,"End"); }; #undef FUNCTION #define FUNCTION "XML::~XML" XML::~XML () { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; }; // end namespace behavioural }; // end namespace morpheo