]> git.mxchange.org Git - simgear.git/blobdiff - simgear/sound/soundmgr_openal.hxx
Use a reference counted pointer for the condition.
[simgear.git] / simgear / sound / soundmgr_openal.hxx
index 567dadf939665d09cb5a304b85b3ebe2dbb12f2d..59cb24e4acf0eaa510caa1eea12a756b36fdc3e1 100644 (file)
@@ -39,7 +39,7 @@
 
 #include <simgear/compiler.h>
 
-#include STL_STRING
+#include <string>
 #include <map>
 
 #if defined( __APPLE__ )
@@ -52,8 +52,8 @@
 
 #include "sample_openal.hxx"
 
-SG_USING_STD(map);
-SG_USING_STD(string);
+using std::map;
+using std::string;
 
 
 typedef map < string, SGSharedPtr<SGSoundSample> > sample_map;
@@ -233,12 +233,12 @@ public:
     }
 
     /**
-     * set the positions of all managaged sound sources 
+     * set the positions of all managed sound sources 
      */
     void set_source_pos_all( ALfloat *pos );
 
     /**
-     * set the velocities of all managaged sound sources 
+     * set the velocities of all managed sound sources 
      */
     void set_source_vel_all( ALfloat *pos );
 };