#ifdef VHDL /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Vhdl.h" #include using namespace std; namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Vhdl::set_body_component" void Vhdl::set_body_component (string name_instance , string name_component , list list_port_map ) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); set_body(name_instance + " : " + name_component); set_body("port map ("); set_list(_list_body, get_list(list_port_map, 1, ",", false)); set_body(");"); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; }; // end namespace behavioural }; // end namespace morpheo #endif