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

    r2168 r2176  
    77#include "Containers.h" 
    88 
    9 //using namespace std; 
     9// 
    1010 
    1111 
     
    208208                mRefCount++; 
    209209      else { 
    210                 cerr<<"Trying to unref already deleted ray!"<<endl; 
     210                std::cerr<<"Trying to unref already deleted ray!"<<std::endl; 
    211211                exit(1); 
    212212      } 
     
    249249          KdNode **node) const; 
    250250 
    251   friend ostream& operator<< (ostream &s, const VssRay &vssRay); 
     251  friend std::ostream& operator<< (std::ostream &s, const VssRay &vssRay); 
    252252     
    253253}; 
     
    286286 
    287287// Overload << operator for C++-style output 
    288 inline ostream& 
    289 operator<< (ostream &s, const VssRay &vssRay) 
     288inline std::ostream& 
     289operator<< (std::ostream &s, const VssRay &vssRay) 
    290290{ 
    291291        return s  
     
    320320struct VssRayContainer : public vector<VssRay *> 
    321321{ 
    322   void PrintStatistics(ostream &s); 
     322  void PrintStatistics(std::ostream &s); 
    323323  int SelectRays(const int number, VssRayContainer &selected, const bool copy=false) const; 
    324324  int 
Note: See TracChangeset for help on using the changeset viewer.