]> git.mxchange.org Git - simgear.git/blobdiff - simgear/sound/xmlsound.hxx
MINGW patch by Csaba Halasz
[simgear.git] / simgear / sound / xmlsound.hxx
index de1be7b627c577937ece12c9f5d7d20fd0050a8a..22dc5c2eeedf3fd877045c3b2da6369145603e7b 100644 (file)
@@ -33,6 +33,8 @@
 # error This library requires C++
 #endif
 
+#include <vector>
+
 #include <simgear/compiler.h>
 #include <simgear/props/condition.hxx>
 
@@ -149,8 +151,8 @@ private:
   double _stopping;    // time after the sound should have stopped.
                        // This is usefull for lost packets in in-trasit mode.
 
-  vector<_snd_prop> _volume;
-  vector<_snd_prop> _pitch;
+  std::vector<_snd_prop> _volume;
+  std::vector<_snd_prop> _pitch;
 
 };