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

    r2170 r2176  
    132132        } 
    133133 
    134         void Print(ostream &app) const; 
    135  
    136         friend ostream &operator<<(ostream &s, const VspTreeStatistics &stat)  
     134        void Print(std::ostream &app) const; 
     135 
     136        friend std::ostream &operator<<(std::ostream &s, const VspTreeStatistics &stat)  
    137137        { 
    138138                stat.Print(s); 
     
    278278        void SetupChildLinks(VspNode *front, VspNode *back); 
    279279 
    280         friend ostream &operator<<(ostream &s, const VspInterior &A) 
     280        friend std::ostream &operator<<(std::ostream &s, const VspInterior &A) 
    281281        { 
    282282                return s << A.mPlane.mAxis << " " << A.mPlane.mPosition; 
     
    10771077        int CompressObjects(VspLeaf *leaf); 
    10781078 
     1079        void TraverseRayPacket(); 
     1080 
    10791081protected: 
    10801082 
     
    11591161 
    11601162        /// subdivision stats output file 
    1161         ofstream mSubdivisionStats; 
     1163        std::ofstream mSubdivisionStats; 
    11621164        /// keeps track of cost during subdivision 
    11631165        float mTotalCost; 
Note: See TracChangeset for help on using the changeset viewer.