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

    r2168 r2176  
    33 
    44#include <functional> 
    5 //using namespace std; 
     5// 
    66 
    77#include "Containers.h" 
     
    8787  } 
    8888 
    89   void Print(ostream &app) const; 
    90  
    91   friend ostream &operator<<(ostream &s, const TraversalTreeStatistics &stat)  
     89  void Print(std::ostream &app) const; 
     90 
     91  friend std::ostream &operator<<(std::ostream &s, const TraversalTreeStatistics &stat)  
    9292  { 
    9393          stat.Print(s); 
     
    266266                // comparator for the  
    267267                struct less_priority: public  
    268                                 binary_function<const TraversalData, const TraversalData, bool>  
     268                                std::binary_function<const TraversalData, const TraversalData, bool>  
    269269                { 
    270270                        bool operator()(const TraversalData a, const TraversalData b)  
Note: See TracChangeset for help on using the changeset viewer.