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

    r2124 r2176  
    137137        int maxRayContriNodes; 
    138138 
    139         void Print(ostream &app) const; 
    140  
    141         friend ostream &operator<<(ostream &s, const BvhStatistics &stat)  
     139        void Print(std::ostream &app) const; 
     140 
     141        friend std::ostream &operator<<(std::ostream &s, const BvhStatistics &stat)  
    142142        { 
    143143                stat.Print(s); 
     
    241241        } 
    242242 
    243         ostream &Describe(ostream &s) { return s; } 
     243        std::ostream &Describe(std::ostream &s) { return s; } 
    244244 
    245245        /////////////////////////////////// 
     
    283283        void SetupChildLinks(BvhNode *front, BvhNode *back); 
    284284 
    285         friend ostream &operator<<(ostream &s, const BvhInterior &A) 
     285        friend std::ostream &operator<<(std::ostream &s, const BvhInterior &A) 
    286286        { 
    287287                return s << A.mBoundingBox; 
     
    10001000        bool mStoreRays; 
    10011001        // subdivision stats output file 
    1002         ofstream  mSubdivisionStats; 
     1002        std::ofstream  mSubdivisionStats; 
    10031003        /// keeps track of cost during subdivision 
    10041004        float mTotalCost; 
Note: See TracChangeset for help on using the changeset viewer.