/* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Interfaces.h" namespace morpheo { namespace behavioural { #ifdef VHDL # ifdef VHDL_TESTBENCH void Interfaces::get_signal (list * & list_signal) { if (not _list_interface->empty()) { list::iterator i = _list_interface->begin(); while (i != _list_interface->end()) { (*i)->get_signal (list_signal); ++i; } } }; # endif #endif }; // end namespace behavioural }; // end namespace morpheo