]> git.tdb.fi Git - libs/al.git/blob - source/device.h
Add Streamer class
[libs/al.git] / source / device.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_DEVICE_H_
9 #define MSP_AL_DEVICE_H_
10
11 #include <string>
12 #include <AL/alc.h>
13
14 namespace Msp {
15 namespace AL {
16
17 class Device
18 {
19 private:
20         ALCdevice *dev;
21
22 public:
23         Device();
24         Device(const std::string &);
25         ~Device();
26
27         ALCdevice *get_device() { return dev; }
28 };
29
30 } // namespace AL
31 } // namespace Msp
32
33 #endif