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/Interface_get_signal.cpp

    r29 r31  
    1919
    2020
    21     list<Signal>::iterator i     = _list_signal.begin();
    22     bool                   empty = _list_signal.empty();
     21    list<Signal>::iterator i     = _list_signal->begin();
     22    bool                   empty = _list_signal->empty();
    2323
    2424    string                 tab   = string(depth,'\t');
     
    2828      {
    2929        // First
    30         if (i != _list_signal.end())
     30        if (i != _list_signal->end())
    3131          {
    3232            text << tab << *i;
     
    3434          }
    3535       
    36         while (i != _list_signal.end())
     36        while (i != _list_signal->end())
    3737          {
    3838            text << separator;
Note: See TracChangeset for help on using the changeset viewer.