Ignore:
Timestamp:
06/22/12 11:21:55 (13 years ago)
Author:
Mathieu Morlighem
Message:

replaced all printf to _printString and _printLine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/objects/Bamg/Edge.cpp

    r12493 r12509  
    2626        /*FUNCTION Edge::Echo {{{*/
    2727        void Edge::Echo(void){
    28                 printf("Edge:\n");
    29                 printf("   pointers towards two vertices: %p %p\n",v[0],v[1]);
    30                 printf("   ReferenceNumber = %i\n",ReferenceNumber);
    31                 printf("   GeomEdgeHook = %p\n",GeomEdgeHook);
    32                 printf("   two adjacent edges on the same curve: %p %p\n",adj[0],adj[1]);
     28                _printLine_("Edge:");
     29                _printLine_("   pointers towards two vertices: " << v[0] << " " << v[1]);
     30                _printLine_("   ReferenceNumber = " << ReferenceNumber);
     31                _printLine_("   GeomEdgeHook = " << GeomEdgeHook);
     32                _printLine_("   two adjacent edges on the same curve: " << adj[0] << " " << adj[1]);
    3333        }
    3434        /*}}}*/
Note: See TracChangeset for help on using the changeset viewer.