Mercurial > audlegacy-plugins
view src/modplug/archive/arch_bz2.h @ 19:6c3e72ff90b0 trunk
[svn] - use $(GTK_CFLAGS) instead of a preprocessor token
author | nenolod |
---|---|
date | Mon, 18 Sep 2006 03:44:25 -0700 |
parents | 3da1b8942b8b |
children |
line wrap: on
line source
/* Modplug XMMS Plugin * Authors: Kenton Varda <temporal@gauge3d.org> * Colin DeVilbiss <crdevilb@mtu.edu> * * This source code is public domain. */ // BZ2 support added by Colin DeVilbiss <crdevilb@mtu.edu> #ifndef __MODPLUG_ARCH_BZIP2_H__INCLUDED__ #define __MODPLUG_ARCH_BZIP2_H__INCLUDED__ #include "archive.h" #include <string> class arch_Bzip2: public Archive { public: arch_Bzip2(const string& aFileName); virtual ~arch_Bzip2(); static bool ContainsMod(const string& aFileName); }; #endif