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

    r1923 r2176  
    9393        bool Valid() const; 
    9494         
    95         friend ostream &operator<<(ostream &s, const BspNodeGeometry &a) 
     95        friend std::ostream &operator<<(std::ostream &s, const BspNodeGeometry &a) 
    9696        { 
    9797                PolygonContainer::const_iterator it, it_end = a.mPolys.end(); 
    9898 
    9999                for (it = a.mPolys.begin(); it != it_end; ++ it) 
    100                         s << *(*it) << endl; 
    101                 return s << endl; 
     100                        s << *(*it) << std::endl; 
     101                return s << std::endl; 
    102102        } 
    103103 
     
    259259        } 
    260260 
    261         void Print(ostream &app) const; 
    262  
    263         friend ostream &operator<<(ostream &s, const BspTreeStatistics &stat)  
     261        void Print(std::ostream &app) const; 
     262 
     263        friend std::ostream &operator<<(std::ostream &s, const BspTreeStatistics &stat)  
    264264        { 
    265265                stat.Print(s); 
     
    394394        void SetupChildLinks(BspNode *b, BspNode *f); 
    395395 
    396         friend ostream &operator<<(ostream &s, const BspInterior &A) 
     396        friend std::ostream &operator<<(std::ostream &s, const BspInterior &A) 
    397397        { 
    398398                return s << A.mPlane; 
     
    10841084 
    10851085        //int mSplits; 
    1086         ofstream  mSubdivisionStats; 
     1086        std::ofstream  mSubdivisionStats; 
    10871087 
    10881088        ViewCellsTree *mViewCellsTree; 
Note: See TracChangeset for help on using the changeset viewer.