Ignore:
Timestamp:
02/28/07 19:38:47 (17 years ago)
Author:
mattausch
Message:

removed using namespace std from .h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/VssRay.cpp

    r2173 r2176  
    315315 
    316316void 
    317 VssRayContainer::PrintStatistics(ostream &s) 
     317VssRayContainer::PrintStatistics(std::ostream &s) 
    318318{ 
    319319 
     
    329329   
    330330  s<<"##### VSS RAY STAT ##########\n"; 
    331   s<<"#RAYS\n"<<(int)size()<<endl; 
    332   s<<"#AVG_RAY_PVS_CONTRIBUTION\n"<<sumContributions/(float)size()<<endl; 
     331  s<<"#RAYS\n"<<(int)size()<<std::endl; 
     332  s<<"#AVG_RAY_PVS_CONTRIBUTION\n"<<sumContributions/(float)size()<<std::endl; 
    333333  s<<"#AVG_RAY_RELATIVE_PVS_CONTRIBUTION\n"<<sumRelContributions/ 
    334         (float)size()<<endl; 
     334        (float)size()<<std::endl; 
    335335   
    336336} 
Note: See TracChangeset for help on using the changeset viewer.