Ignore:
Timestamp:
Sep 6, 2007, 6:30:49 PM (17 years ago)
Author:
rosiere
Message:
  • Banc de registre multi banc
  • Banc de registre générique.
File:
1 edited

Legend:

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

    r15 r53  
    1414@NAMESPACE_BEGIN
    1515
     16#undef  FUNCTION
     17#define FUNCTION "@COMPONENT::print"
    1618  string Parameters::print (uint32_t depth)
    1719  {
    18     log_printf(FUNC,@COMPONENT,"print","Begin");
     20    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
    1921
    2022    XML xml ("@COMPONENT_LOWER");
    2123
    2224    xml.balise_open("@COMPONENT_LOWER");
    23 //  xml.singleton_begin("size_data"); xml.attribut("value",toString(_size_data)); xml.singleton_end();
    24 //  xml.singleton_begin("nb_port  "); xml.attribut("value",toString(_nb_port  )); xml.singleton_end();
     25//  xml.singleton_begin(""); xml.attribut("value",toString(_)); xml.singleton_end();
    2526    xml.balise_close();
    2627
    27     log_printf(FUNC,@COMPONENT,"print","End");
     28    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
    2829   
    2930    return xml.get_body(depth);
    3031  };
    3132
     33#undef  FUNCTION
     34#define FUNCTION "@COMPONENT::operator<<"
    3235  ostream& operator<< (ostream& output_stream ,
    3336                       morpheo::behavioural::@NAMESPACE_USE::Parameters & x)
    3437  {
     38    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
     39
    3540    output_stream << x.print(0);
    3641   
     42    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
     43
    3744    return output_stream;
    3845  };
Note: See TracChangeset for help on using the changeset viewer.