#ifdef VHDL_TESTBENCH /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Interfaces.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Interfaces::get_clock" Signal * Interfaces::get_clock (void) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); Signal * clock = NULL; if (not _list_interface->empty()) { std::list::iterator i = _list_interface->begin(); while (i != _list_interface->end()) { Signal * sig = (*i)->get_clock (); if (sig != NULL) { if (clock != NULL) throw ErrorMorpheo (" : find too many clock."); clock = sig; } ++i; } } if (clock == NULL) throw ErrorMorpheo (" : no clock find."); log_printf(FUNC,Behavioural,FUNCTION,"Begin"); return clock; }; }; // end namespace behavioural }; // end namespace morpheo #endif