X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdevice.h;fp=source%2Fdevice.h;h=4c80d9eb84e64e64820332f35671bf0799b2559e;hb=35ea5cc8d1eb8c806885d27441548f630e7b1266;hp=0000000000000000000000000000000000000000;hpb=ddb247cf59f06eb477c3a2420da6d721e58c2914;p=libs%2Fal.git diff --git a/source/device.h b/source/device.h new file mode 100644 index 0000000..4c80d9e --- /dev/null +++ b/source/device.h @@ -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 +#include + +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