/* * $Id: Generator_toXML.cpp 88 2008-12-10 18:31:39Z rosiere $ * * [ Description ] * */ #include "Behavioural/Configuration/include/Generator.h" namespace morpheo { namespace behavioural { namespace configuration { #undef FUNCTION #define FUNCTION "Generator::toXML" XML Generator::toXML (void) { XML xml (basename(_filename.c_str())); xml.filename_extension(""); xml.balise_open("parameters"); for (std::map::iterator it = _array_param->begin(); it != _array_param->end(); ++it) { xml.insert_XML(it->second->toXML(),1); } for (std::map::iterator it = _array_link->begin(); it != _array_link->end(); ++it) { xml.insert_XML(it->second->toXML(),1); } xml.balise_close(); return xml; } }; // end namespace configuration }; // end namespace behavioural }; // end namespace morpheo