#ifdef VHDL_TESTBENCH /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Vhdl_Testbench.h" #include using namespace std; namespace morpheo { namespace behavioural { void Vhdl_Testbench::set_output (void) { string text = ""; while (_list_output_cycle.empty() == false) { text += _list_output_cycle.front(); _list_output_cycle.pop_front(); } _list_output.push_back(text); }; }; // end namespace behavioural }; // end namespace morpheo #endif