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

    r2124 r2176  
    7474        } 
    7575 
    76         void Print(ostream &app) const; 
    77  
    78         friend ostream &operator<<(ostream &s, const ViewCellsStatistics &stat) 
     76        void Print(std::ostream &app) const; 
     77 
     78        friend std::ostream &operator<<(std::ostream &s, const ViewCellsStatistics &stat) 
    7979        { 
    8080                stat.Print(s); 
     
    132132 
    133133 
    134         void Print(ostream &app) const; 
    135  
    136         friend ostream &operator<<(ostream &s, const ViewCellsTreeStats &stat) 
     134        void Print(std::ostream &app) const; 
     135 
     136        friend std::ostream &operator<<(std::ostream &s, const ViewCellsTreeStats &stat) 
    137137        { 
    138138                stat.Print(s); 
     
    540540        /** Export statistics of this view cell tree. 
    541541        */ 
    542         void ExportStats(const string &mergeStats); 
     542        void ExportStats(const std::string &mergeStats); 
    543543 
    544544        /** Sets root of hierarchy. 
     
    685685        /** Update stats for the log. 
    686686        */ 
    687         void UpdateStats(ofstream &stats, 
     687        void UpdateStats(std::ofstream &stats, 
    688688                                         const ViewCellsTreeStats &vcStats); 
    689689 
     
    723723        float mMergeMaxCostRatio; 
    724724 
    725         typedef priority_queue<MergeCandidate> MergeQueue; 
     725        typedef std::priority_queue<MergeCandidate> MergeQueue; 
    726726 
    727727        MergeQueue mMergeQueue; 
     
    846846        } 
    847847 
    848         void Print(ostream &app) const; 
    849  
    850         friend ostream &operator<<(ostream &s, const MergeStatistics &stat)  
     848        void Print(std::ostream &app) const; 
     849 
     850        friend std::ostream &operator<<(std::ostream &s, const MergeStatistics &stat)  
    851851        { 
    852852                stat.Print(s); 
Note: See TracChangeset for help on using the changeset viewer.