Show
Ignore:
Timestamp:
04/18/08 04:01:03 (8 months ago)
Author:
vossg
Message:

fixed: attachmentmap ref counting, cluster sync

: test program leftover containers

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/Contrib/VTK/testVTK.cpp

    r1167 r1176  
    775775} 
    776776 
    777 int main (int argc, char **argv) 
     777int doMain (int argc, char **argv) 
    778778{ 
    779779    osgInit(argc,argv); 
     
    968968    tball.setTranslationScale(scale); 
    969969    tball.setRotationCenter(tCenter); 
     970     
     971    return 0; 
     972} 
     973 
     974int main (int argc, char **argv) 
     975{ 
     976    doMain(argc, argv); 
    970977 
    971978    // run... 
    972      
    973979    glutMainLoop(); 
    974      
     980 
    975981    return 0; 
    976982} 
    977