]> git.tdb.fi Git - libs/al.git/blob - source/context.h
de26ac71aa8733b54dd1cd9c79db8ccc36c684c5
[libs/al.git] / source / context.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_CONTEXT_H_
9 #define MSP_AL_CONTEXT_H_
10
11 #include <AL/alc.h>
12
13 namespace Msp {
14 namespace AL {
15
16 class Device;
17
18 class Context
19 {
20 private:
21         ALCcontext *context;
22
23 public:
24         Context(Device &);
25 };
26
27 } // namespace AL
28 } // namespace Msp
29
30 #endif