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/ObjectPvs.h

    r2123 r2176  
    55#include "PvsDefinitions.h" 
    66 
    7 using namespace std; 
     7// 
    88 
    99namespace GtpVisibilityPreprocessor { 
     
    2525        float EvalPvsCost() const; 
    2626 
    27         friend ostream &operator<<(ostream &s, const ObjectPvs &p)  
     27        friend std::ostream &operator<<(std::ostream &s, const ObjectPvs &p)  
    2828        { 
    2929                ObjectPvsIterator pit = p.GetIterator(); 
     
    3232                {                
    3333                        Intersectable *obj = pit.Next(); 
    34                         cout << obj << " "; 
     34                        std::cout << obj << " "; 
    3535                } 
    3636                 
Note: See TracChangeset for help on using the changeset viewer.