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

    r1779 r2176  
    129129 
    130130 
    131         void Print(ostream &app) const; 
    132  
    133         friend ostream &operator<<(ostream &s, const OspTreeStatistics &stat)  
     131        void Print(std::ostream &app) const; 
     132 
     133        friend std::ostream &operator<<(std::ostream &s, const OspTreeStatistics &stat)  
    134134        { 
    135135                stat.Print(s); 
     
    830830        float mEpsilon; 
    831831        /// subdivision stats output file 
    832         ofstream  mSubdivisionStats; 
     832        std::ofstream  mSubdivisionStats; 
    833833        /// keeps track of cost during subdivision 
    834834        float mTotalCost; 
Note: See TracChangeset for help on using the changeset viewer.