]> git.tdb.fi Git - libs/al.git/blob - source/context.h
Add Streamer class
[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         ~Context();
26 };
27
28 } // namespace AL
29 } // namespace Msp
30
31 #endif