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

    r1932 r2176  
    7070  friend SimpleRay GetPlaneIntersection(const Plane3 &plane1, const Plane3 &plane2); 
    7171 
    72   friend ostream &operator<<(ostream &s, const Plane3 &p) { 
     72  friend std::ostream &operator<<(std::ostream &s, const Plane3 &p) { 
    7373    s<<p.mNormal<<" "<<p.mD; 
    7474    return s; 
     
    8989          { 
    9090          } 
     91 
    9192        Plane3 GetPlane() const 
    9293        { 
     
    104105        bool mOrientation; 
    105106 
    106         friend ostream &operator<<(ostream &s, const AxisAlignedPlane &p)  
     107        friend std::ostream &operator<<(std::ostream &s, const AxisAlignedPlane &p)  
    107108        { 
    108109                s << "a: " << p.mAxis << " p: " << p.mPosition; 
Note: See TracChangeset for help on using the changeset viewer.