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

Last change on this file since 75 was 75, checked in by rosiere, 16 years ago

Update all component (except front_end) to :

  • new statistics model
  • no namespace std
File size: 751 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
17#undef  FUNCTION
18#define FUNCTION "Interfaces::get_signal"
19  void Interfaces::get_signal (std::list<std::string> * & list_signal)
20  {
21    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
22
23    if (not _list_interface->empty())
24      {
25        std::list<Interface_fifo*>::iterator i = _list_interface->begin();
26       
27        while (i != _list_interface->end())
28          {
29            (*i)->get_signal (list_signal);
30            ++i;
31          }
32      }
33    log_printf(FUNC,Behavioural,FUNCTION,"End");
34  };
35#  endif
36#endif
37
38}; // end namespace behavioural         
39}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.