]> git.mxchange.org Git - simgear.git/blobdiff - simgear/timing/geocoord.h
include file change to make simgear work with OSG 2.9.X again
[simgear.git] / simgear / timing / geocoord.h
index 956e1189f1ca4b778fbee390192d28d35d45d229..536cf0f95ca2fe7707d631d05636eb24e09d94bd 100644 (file)
@@ -38,8 +38,6 @@
 #include <math.h>
 #include <vector>
 
-SG_USING_NAMESPACE(std);
-
 #include <simgear/constants.h>
 
 class SGGeoCoord
@@ -65,9 +63,9 @@ public:
   virtual const char * getDescription() {return 0;};
 };
 
-typedef vector<SGGeoCoord*> SGGeoCoordVector;
-typedef vector<SGGeoCoord*>::iterator SGGeoCoordVectorIterator;
-typedef vector<SGGeoCoord*>::const_iterator SGGeoCoordVectorConstIterator;
+typedef std::vector<SGGeoCoord*> SGGeoCoordVector;
+typedef std::vector<SGGeoCoord*>::iterator SGGeoCoordVectorIterator;
+typedef std::vector<SGGeoCoord*>::const_iterator SGGeoCoordVectorConstIterator;
 
 /************************************************************************
  * SGGeoCoordContainer is a simple container class, that stores objects