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

    r2117 r2176  
    33 
    44#include <functional> 
    5 using namespace std; 
     5// 
    66 
    77#include "Containers.h" 
     
    8383 
    8484  void 
    85   Print(ostream &app) const; 
    86  
    87   friend ostream &operator<<(ostream &s, const KdTreeStatistics &stat) { 
     85  Print(std::ostream &app) const; 
     86 
     87  friend std::ostream &operator<<(std::ostream &s, const KdTreeStatistics &stat) { 
    8888    stat.Print(s); 
    8989    return s; 
     
    268268    // comparator for the  
    269269    struct less_priority : public 
    270     binary_function<const TraversalData, const TraversalData, bool> { 
     270    std::binary_function<const TraversalData, const TraversalData, bool> { 
    271271       
    272272      bool operator()(const TraversalData a, const TraversalData b) { 
     
    425425  CollectLeafPvs(); 
    426426 
    427   bool ExportBinTree(const string &filename); 
    428   bool LoadBinTree(const string &filename, ObjectContainer &object); 
     427  bool ExportBinTree(const std::string &filename); 
     428  bool LoadBinTree(const std::string &filename, ObjectContainer &object); 
    429429 
    430430protected: 
Note: See TracChangeset for help on using the changeset viewer.