]> git.tdb.fi Git - libs/al.git/blob - source/context.h
Drop copyright notices and Id tags from source files
[libs/al.git] / source / context.h
1 #ifndef MSP_AL_CONTEXT_H_
2 #define MSP_AL_CONTEXT_H_
3
4 #include <AL/alc.h>
5
6 namespace Msp {
7 namespace AL {
8
9 class Device;
10
11 class Context
12 {
13 private:
14         ALCcontext *context;
15
16 public:
17         Context(Device &);
18         ~Context();
19 };
20
21 } // namespace AL
22 } // namespace Msp
23
24 #endif