comparison src/Input/modplug/archive/arch_raw.h @ 0:13389e613d67 trunk

[svn] - initial import of audacious-plugins tree (lots to do)
author nenolod
date Mon, 18 Sep 2006 01:11:49 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:13389e613d67
1 /* Modplug XMMS Plugin
2 * Authors: Kenton Varda <temporal@gauge3d.org>
3 *
4 * This source code is public domain.
5 */
6
7 #ifndef __MODPLUG_ARCH_RAW_H__INCLUDED__
8 #define __MODPLUG_ARCH_RAW_H__INCLUDED__
9
10 #include "archive.h"
11 #include <string>
12
13 class arch_Raw: public Archive
14 {
15 int mFileDesc;
16
17 public:
18 arch_Raw(const string& aFileName);
19 virtual ~arch_Raw();
20
21 static bool ContainsMod(const string& aFileName);
22 };
23
24 #endif