#ifdef VHDL /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Vhdl.h" #include using namespace std; namespace morpheo { namespace behavioural { void Vhdl::set_body_component_port_map (list & list_port_map , string name_port , string name_signal ) { set_list(list_port_map, name_port + "\t=>" + name_signal); }; }; // end namespace behavioural }; // end namespace morpheo #endif