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

    r2105 r2176  
    7272  Intersection sourceObject; 
    7373   
    74   vector<Intersection> intersections; 
    75  // vector<BspIntersection> bspIntersections; 
    76   vector<KdLeaf *> kdLeaves; 
    77   vector<Intersectable *> testedObjects; 
     74  std::vector<Intersection> intersections; 
     75 // std::vector<BspIntersection> bspIntersections; 
     76  std::vector<KdLeaf *> kdLeaves; 
     77  std::vector<Intersectable *> testedObjects; 
    7878 
    7979  // various flags 
     
    244244 
    245245private: 
    246   Vector3 loc, dir;             // Describes ray origin and vector 
     246  Vector3 loc, dir;             // Describes ray origin and std::vector 
    247247   
    248248  // The inverted direction of the ray components. It is computed optionally 
     
    284284  friend int MakeIntersectLine(const Plane3 &p, const Plane3 &q, Ray &ray); 
    285285 
    286         friend ostream &operator<<(ostream &s, const Ray &r) { 
     286        friend std::ostream &operator<<(std::ostream &s, const Ray &r) { 
    287287                return s<<"Ray:loc="<<r.loc<<" dir="<<r.dir; 
    288288        } 
     
    311311  int GetEntryIndex(const Vector3 &direction) const; 
    312312 
    313   friend ostream &operator<<(ostream &s, const PassingRaySet &set); 
     313  friend std::ostream &operator<<(std::ostream &s, const PassingRaySet &set); 
    314314 
    315315}; 
Note: See TracChangeset for help on using the changeset viewer.