Ignore:
Timestamp:
May 28, 2007, 10:38:18 PM (17 years ago)
Author:
rosiere
Message:

Class Position qui encapsule la génération des fichiers de positions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces_set_port.cpp

    r29 r31  
    1515  void Interfaces::set_port (Vhdl * & vhdl)
    1616  {
    17     if (not _list_interface.empty())
     17    if (not _list_interface->empty())
    1818      {
    19         list<Interface>::iterator i     = _list_interface.begin();
     19        list<Interface>::iterator i     = _list_interface->begin();
    2020       
    21         while (i != _list_interface.end())
     21        while (i != _list_interface->end())
    2222          {
    2323            (*i).set_port (vhdl);
     
    2929  void Interfaces::set_port (Vhdl_Testbench * & vhdl_testbench)
    3030  {
    31     if (not _list_interface.empty())
     31    if (not _list_interface->empty())
    3232      {
    33         list<Interface>::iterator i     = _list_interface.begin();
     33        list<Interface>::iterator i     = _list_interface->begin();
    3434       
    35         while (i != _list_interface.end())
     35        while (i != _list_interface->end())
    3636          {
    3737            (*i).set_port (vhdl_testbench);
Note: See TracChangeset for help on using the changeset viewer.