#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_port_map" void Vhdl::set_body_component_port_map (list & list_port_map , string name_port , string name_signal ) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); set_list(list_port_map, name_port + "\t=>" + name_signal); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; }; // end namespace behavioural }; // end namespace morpheo #endif