]> git.tdb.fi Git - libs/al.git/blob - source/listener.h
Fix a typo in the copyright notice
[libs/al.git] / source / listener.h
1 /* $Id$
2
3 This file is part of libmspal
4 Copyright © 2008 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_AL_LIStENER_H_
9 #define MSP_AL_LISTENER_H_
10
11 #include <AL/al.h>
12
13 namespace Msp {
14 namespace AL {
15
16 class Listener
17 {
18 private:
19         Listener();
20 public:
21         static void attribute(ALenum, float);
22         static void attribute(ALenum, float, float, float);
23         static void attribute(ALenum, const float *);
24         static void set_position(float, float, float);
25         static void set_gain(float);
26 };
27
28 } // namespace AL
29 } // namespace Msp
30
31 #endif