#ifdef VHDL /* * $Id: Vhdl_get_component.cpp 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Vhdl.h" #include namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Vhdl::get_component" std::string Vhdl::get_component(uint32_t depth, std::string name) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); std::string tab = std::string(depth,'\t'); std::ostringstream text; text << std::endl << tab << "component " << name << std::endl; if (_list_port.empty() == false) text << tab << "\tport (" << std::endl << tab << get_port(depth+1) << std::endl << tab << "\t );" << std::endl; text << tab << "end component;" << std::endl; log_printf(FUNC,Behavioural,FUNCTION,"End"); return text.str(); }; }; // end namespace behavioural }; // end namespace morpheo #endif