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