Mercurial > audlegacy-plugins
view src/modplug/archive/arch_rar.h @ 1573:82548d92c922
Some macro additions for handling Gtk+/Glib stuff; Misc merges.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Mon, 03 Sep 2007 06:25:55 +0300 |
parents | 3da1b8942b8b |
children |
line wrap: on
line source
/* 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