Ignore:
Timestamp:
05/24/13 13:02:48 (12 years ago)
Author:
Eric.Larour
Message:

CHG: changed the names of _printString_ and _pprintString_
to _printf_ and _printf0_

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Materials/Matice.cpp

    r15099 r15100  
    6969void Matice::Echo(void){
    7070
    71         _printString_("Matice:" << "\n");
    72         _printString_("   mid: " << mid << "\n");
    73         _printString_("   inputs:" << "\n");
     71        _printf_("Matice:" << "\n");
     72        _printf_("   mid: " << mid << "\n");
     73        _printf_("   inputs:" << "\n");
    7474        inputs->Echo();
    75         _printString_("   element:" << "\n");
     75        _printf_("   element:" << "\n");
    7676        helement->Echo();
    7777}
     
    8080void Matice::DeepEcho(void){
    8181
    82         _printString_("Matice:" << "\n");
    83         _printString_("   mid: " << mid << "\n");
    84         _printString_("   inputs:" << "\n");
     82        _printf_("Matice:" << "\n");
     83        _printf_("   mid: " << mid << "\n");
     84        _printf_("   inputs:" << "\n");
    8585        inputs->DeepEcho();
    86         _printString_("   element:" << "\n");
     86        _printf_("   element:" << "\n");
    8787        helement->Echo();
    8888}               
Note: See TracChangeset for help on using the changeset viewer.