/* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Interfaces.h" namespace morpheo { namespace behavioural { #ifdef VHDL # ifdef VHDL_TESTBENCH #undef FUNCTION #define FUNCTION "Interfaces::set_signal" void Interfaces::set_signal (Vhdl * & vhdl) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); if (not _list_interface->empty()) { std::list::iterator i = _list_interface->begin(); while (i != _list_interface->end()) { (*i)->set_signal (vhdl); ++i; } } log_printf(FUNC,Behavioural,FUNCTION,"End"); }; # endif #endif }; // end namespace behavioural }; // end namespace morpheo