source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces_get_signal.cpp @ 41

Last change on this file since 41 was 41, checked in by rosiere, 17 years ago

Vhdl_Testbench : Modification du testbench. Maintenant complétement encapsuler dans la classe "Interfaces".
Suppression de la class Vhdl_Testbench dans un avenir proche :D
Suppression du répertoire Configuration.old

File size: 575 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Interfaces.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
14#ifdef VHDL
15#  ifdef VHDL_TESTBENCH
16  void Interfaces::get_signal (list<string> * & list_signal)
17  {
18    if (not _list_interface->empty())
19      {
20        list<Interface_fifo*>::iterator i = _list_interface->begin();
21       
22        while (i != _list_interface->end())
23          {
24            (*i)->get_signal (list_signal);
25            ++i;
26          }
27      }
28  };
29#  endif
30#endif
31
32}; // end namespace behavioural         
33}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.