X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcontext.h;fp=source%2Fcontext.h;h=93cb0e886485c099536fe7c873dc90406c3329cd;hb=35ea5cc8d1eb8c806885d27441548f630e7b1266;hp=0000000000000000000000000000000000000000;hpb=ddb247cf59f06eb477c3a2420da6d721e58c2914;p=libs%2Fal.git diff --git a/source/context.h b/source/context.h new file mode 100644 index 0000000..93cb0e8 --- /dev/null +++ b/source/context.h @@ -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 + +namespace Msp { +namespace AL { + +class Device; + +class Context +{ +private: + ALCcontext *context; + +public: + Context(Device &); +}; + +} // namespace AL +} // namespace Msp + +#endif