]> git.mxchange.org Git - flightgear.git/blobdiff - src/Sound/morse.cxx
MapWidget: make use of the new POI system and display cities on the map.
[flightgear.git] / src / Sound / morse.cxx
index 379c1574881f526370d04408033c54182d5e9a38..1563841ab7fee87567a2a4a6e4464e4a7145a367 100644 (file)
 
 #include "morse.hxx"
 
+#include <simgear/sound/sample_openal.hxx>
+
 #include <cstring>
+#include <stdlib.h>
 
 static const char DI = '1';
 static const char DIT = '1';
@@ -134,7 +137,7 @@ bool FGMorse::cust_init(const int freq ) {
 
 
 // make a SGSoundSample morse code transmission for the specified string
-SGSoundSample *FGMorse::make_ident( const string& id, const int freq ) {
+SGSoundSample *FGMorse::make_ident( const std::string& id, const int freq ) {
 
     char *idptr = (char *)id.c_str();