#ifdef POSITION /* * $Id: Interface_toXML.cpp 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Interface.h" #include "Behavioural/include/Entity.h" namespace morpheo { namespace behavioural { XML Interface::toXML (void) { log_printf(FUNC,Behavioural,"toXML","Begin"); XML xml ("interface"); xml.balise_open_begin ("port"); xml. attribut ("name" ,_name ); xml. attribut ("direction" ,toString(_direction )); xml. attribut ("localisation",toString(_localisation)); xml.balise_open_end (); xml. text (get_comment()); if (_list_signal->empty()== false) { std::list::iterator i = _list_signal->begin(); while (i != _list_signal->end()) { xml. insert_XML ((*i)->toXML()); ++i; } } xml.balise_close (); log_printf(FUNC,Behavioural,"toXML","End"); return xml; }; XML Interface::toXML_mapping (void) { log_printf(FUNC,Behavioural,"toXML_mapping","Begin"); if (_is_map != true) throw (ErrorMorpheo ("Interface \""+_name+"\" is never mapped")); XML xml ("interface"); xml.singleton_begin ("port_map"); xml. attribut ("name" ,_name ); xml. attribut ("component",(static_cast(_entity_map ))->get_name()); xml. attribut ("port" ,(static_cast(_interface_map))->get_name()); xml.singleton_end (); log_printf(FUNC,Behavioural,"toXML_mapping","End"); return xml; }; }; // end namespace behavioural }; // end namespace morpheo #endif