]> git.mxchange.org Git - flightgear.git/blobdiff - src/ATC/ATCVoice.hxx
Migrate FlightGear code to use "#include SG_GL*" defined in
[flightgear.git] / src / ATC / ATCVoice.hxx
index 657e5ecb20301ec4cd761d933a0d1f3b606057af..9d9fb7d92be9e37625f279b84920ea42f02d0e5a 100644 (file)
@@ -21,8 +21,6 @@
 #ifndef _FG_ATC_VOICE
 #define _FG_ATC_VOICE
 
-#include <plib/sl.h>
-
 #include <simgear/compiler.h>
 
 #if defined( SG_HAVE_STD_INCLUDES ) || defined( __BORLANDC__ ) || (__APPLE__)
@@ -37,6 +35,8 @@
 #include <list>
 #include <string>
 
+#include <simgear/sound/sample_openal.hxx>
+
 SG_USING_STD(map);
 SG_USING_STD(list);
 SG_USING_STD(string);
@@ -77,7 +77,7 @@ private:
        // the sound and word position data
        char* rawSoundData;
        unsigned int rawDataSize;
-       slSample* SoundData;
+        SGSoundSample *SoundData;
 
        // A map of words vs. byte position and length in rawSoundData
        atc_word_map_type wordMap;