]> git.mxchange.org Git - flightgear.git/blobdiff - src/Sound/beacon.hxx
Added two missing files from JSBSim.org that were missing in the last sync.
[flightgear.git] / src / Sound / beacon.hxx
index 6c70214201c1c257bf4c8ef42d0c893124f68ce3..d0c37d6974809bdf4b1d9944fb78055d3db7e638 100644 (file)
@@ -18,7 +18,7 @@
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 // $Id$
 
@@ -32,6 +32,8 @@
 
 #include <simgear/compiler.h>
 #include <simgear/sound/soundmgr_openal.hxx>
+#include <simgear/structure/SGReferenced.hxx>
+#include <simgear/structure/SGSharedPtr.hxx>
 
 #include "morse.hxx"
 
@@ -93,9 +95,9 @@ class FGBeacon {
 
 private:
 
-    SGSoundSample *inner;
-    SGSoundSample *middle;
-    SGSoundSample *outer;
+    SGSharedPtr<SGSoundSample> inner;
+    SGSharedPtr<SGSoundSample> middle;
+    SGSharedPtr<SGSoundSample> outer;
 
 public: