Ignore:
Timestamp:
Jul 9, 2007, 11:04:26 AM (17 years ago)
Author:
rosiere
Message:

Modif mineur : ajout d'info de débug

Release non stable

File:
1 edited

Legend:

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

    r3 r43  
    1111namespace behavioural          {
    1212
     13#undef  FUNCTION
     14#define FUNCTION "XML::get_body"
    1315  string XML::get_body (void)
    1416  {
     17    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
     18    log_printf(FUNC,Behavioural,FUNCTION,"End");
    1519    return _body;
    1620  };
     
    1822  string XML::get_body (uint32_t depth)
    1923  {
     24    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
     25
    2026    string body       = _body;
    2127    string tabulation = indent(depth);
     
    2531      body.insert(++pos,tabulation);
    2632
     33    log_printf(FUNC,Behavioural,FUNCTION,"End");
    2734    return body;
    2835  };
Note: See TracChangeset for help on using the changeset viewer.