]> git.tdb.fi Git - libs/al.git/blobdiff - source/device.h
Initial revision
[libs/al.git] / source / device.h
diff --git a/source/device.h b/source/device.h
new file mode 100644 (file)
index 0000000..4c80d9e
--- /dev/null
@@ -0,0 +1,31 @@
+/* $Id$
+
+This file is part of libmspal
+Copyright © 2008 Mikko Rasa, Mikkosoft Productions
+Diestributed under the LGPL
+*/
+
+#ifndef MSP_AL_DEVICE_H_
+#define MSP_AL_DEVICE_H_
+
+#include <string>
+#include <AL/alc.h>
+
+namespace Msp {
+namespace AL {
+
+class Device
+{
+private:
+       ALCdevice *dev;
+
+public:
+       Device();
+       Device(const std::string &);
+       ALCdevice *get_device() { return dev; }
+};
+
+} // namespace AL
+} // namespace Msp
+
+#endif