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

    r2116 r2176  
    22#define __GLRENDERER_H 
    33 
     4#include "ObjectPvs.h" 
    45#include "Vector3.h" 
    56#include "Containers.h" 
     
    78#include "Renderer.h" 
    89#include "Beam.h" 
    9 #include "ObjectPvs.h" 
     10 
    1011 
    1112 
     
    2526class TransformedMeshInstance; 
    2627class TriangleIntersectable; 
    27  class BvhNode; 
    28   class SimpleRayContainer; 
     28class BvhNode; 
     29class SimpleRayContainer; 
    2930 
    3031struct VssRayContainer; 
     
    166167 
    167168  inline const bool GetSnapErrorFrames() { return mSnapErrorFrames; } 
    168   inline const string GetSnapPrefix() { return mSnapPrefix; } 
     169  inline const std::string GetSnapPrefix() { return mSnapPrefix; } 
    169170 
    170171  inline void SetSnapErrorFrames(bool snapframes) { mSnapErrorFrames = snapframes; } 
    171   inline void SetSnapPrefix(const string &pref) { mSnapPrefix = pref; } 
     172  inline void SetSnapPrefix(const std::string &pref) { mSnapPrefix = pref; } 
    172173 
    173174  virtual void ClearErrorBuffer(); 
     
    228229  bool mUseGlLists; 
    229230   
    230   string mSnapPrefix; 
     231  std::string mSnapPrefix; 
    231232 
    232233  GLUquadric *mSphere; 
Note: See TracChangeset for help on using the changeset viewer.