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

    r2124 r2176  
    255255  // Writes a brief description of the object, indenting by the given 
    256256  // number of spaces first. 
    257   virtual void Describe(ostream& app, int ind) const; 
     257  virtual void Describe(std::ostream& app, int ind) const; 
    258258 
    259259  // For edge .. number <0..11> returns two incident vertices 
     
    434434 
    435435  // input and output operator with stream 
    436   friend ostream& operator<<(ostream &s, const AxisAlignedBox3 &A); 
    437   friend istream& operator>>(istream &s, AxisAlignedBox3 &A); 
     436  friend std::ostream& operator<<(std::ostream &s, const AxisAlignedBox3 &A); 
     437  friend std::istream& operator>>(std::istream &s, AxisAlignedBox3 &A); 
    438438 
    439439protected: 
Note: See TracChangeset for help on using the changeset viewer.