source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_set_port.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: 624 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Interface.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
14#ifdef VHDL
15  void Interface::set_port (Vhdl * & vhdl)
16  {
17    log_printf(FUNC,Behavioural,"set_port (Vhdl)","Begin");
18    if (not _list_signal->empty())
19      {
20        std::list<Signal*>::iterator i     = _list_signal->begin();
21       
22        while (i != _list_signal->end())
23          {
24            (*i)->set_port (vhdl);
25            ++i;
26          }
27      }
28    log_printf(FUNC,Behavioural,"set_port (Vhdl)","End");
29  };
30#endif
31
32}; // end namespace behavioural         
33}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.