Mercurial > audlegacy
diff Plugins/Input/modplug/archive/arch_rar.h @ 278:37316876ef6e trunk
[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
author | chainsaw |
---|---|
date | Sat, 10 Dec 2005 14:31:13 -0800 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Plugins/Input/modplug/archive/arch_rar.h Sat Dec 10 14:31:13 2005 -0800 @@ -0,0 +1,22 @@ +/* Modplug XMMS Plugin + * Authors: Kenton Varda <temporal@gauge3d.org> + * + * This source code is public domain. + */ + +#ifndef __MODPLUG_ARCH_RAR_H__INCLUDED__ +#define __MODPLUG_ARCH_RAR_H__INCLUDED__ + +#include "archive.h" +#include <string> + +class arch_Rar: public Archive +{ +public: + arch_Rar(const string& aFileName); + virtual ~arch_Rar(); + + static bool ContainsMod(const string& aFileName); +}; + +#endif