X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Faudio%2Fdummy_sound_source.cpp;h=979b740b1b224d0e2d8c7dc234e8f584311fdaa6;hb=08813a74da6ac1fd045a105e4e8105f1d7f716f0;hp=40ccdfcb0ddae17fd266e53737d3760ca16aa5b6;hpb=f406067af6cbeb0a638078fe1d386d092583909c;p=supertux.git diff --git a/src/audio/dummy_sound_source.cpp b/src/audio/dummy_sound_source.cpp index 40ccdfcb0..979b740b1 100644 --- a/src/audio/dummy_sound_source.cpp +++ b/src/audio/dummy_sound_source.cpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux // Copyright (C) 2006 Matthias Braun // -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,17 +12,15 @@ // GNU General Public License for more details. // // 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -#include +// along with this program. If not, see . -#include "dummy_sound_source.hpp" -#include "sound_source.hpp" +#include "audio/sound_source.hpp" class DummySoundSource : public SoundSource { public: - DummySoundSource() + DummySoundSource() : + is_playing() {} virtual ~DummySoundSource() {} @@ -80,3 +76,5 @@ SoundSource* create_dummy_sound_source() { return new DummySoundSource(); } + +/* EOF */