Mercurial > audlegacy-plugins
view src/modplug/archive/arch_raw.h @ 58:d42917f142b5 trunk
[svn] - remove debugging notices
author | nenolod |
---|---|
date | Sat, 30 Sep 2006 21:11:48 -0700 |
parents | 3da1b8942b8b |
children | 88465b96e4b3 |
line wrap: on
line source
/* Modplug XMMS Plugin * Authors: Kenton Varda <temporal@gauge3d.org> * * This source code is public domain. */ #ifndef __MODPLUG_ARCH_RAW_H__INCLUDED__ #define __MODPLUG_ARCH_RAW_H__INCLUDED__ #include "archive.h" #include <string> class arch_Raw: public Archive { int mFileDesc; public: arch_Raw(const string& aFileName); virtual ~arch_Raw(); static bool ContainsMod(const string& aFileName); }; #endif