#ifdef VHDL /* * $Id: Vhdl_get_port.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_port" std::string Vhdl::get_port (uint32_t depth) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); std::string _return = get_list (_list_port, depth, ";", false); log_printf(FUNC,Behavioural,FUNCTION,"End"); return _return; }; }; // end namespace behavioural }; // end namespace morpheo #endif