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