]> git.tdb.fi Git - libs/al.git/blobdiff - source/soundscape.h
Drop copyright notices and Id tags from source files
[libs/al.git] / source / soundscape.h
index 3eca7eafcf265fd484f681b9c43a78aa5ad1eb0f..97685328c87fb9f1c804c11e66fd274443c35df8 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of libmspal
-Copyright © 2008 Mikko Rasa, Mikkosoft Productions
-Diestributed under the LGPL
-*/
-
 #ifndef MSP_AL_SOUNDSCAPE_H_
 #define MSP_AL_SOUNDSCAPE_H_
 
@@ -16,6 +9,9 @@ namespace AL {
 class Buffer;
 class Source;
 
+/**
+A SoundScape offers an easy way to play positional sound effects.
+*/
 class SoundScape
 {
 private:
@@ -24,8 +20,8 @@ private:
 public:
        ~SoundScape();
 
-       void add_source(Source *);
-       Source *play(const Buffer &, float, float, float);
+       void add_source(Source &);
+       Source &play(const Buffer &, float, float, float);
        void tick();
 };