aboutsummaryrefslogtreecommitdiff
path: root/include/InputFile.h
diff options
context:
space:
mode:
authorB. Bogart <bbogart@users.sourceforge.net>2005-08-13 01:16:59 +0000
committerB. Bogart <bbogart@users.sourceforge.net>2005-08-13 01:16:59 +0000
commit5e05f47d61ebad8aee6c3831912b21ad5dcc36e3 (patch)
treeb8793d1908e5c2ce256e886357cbcb86e1b768b9 /include/InputFile.h
Initial commit of readanysf~ 0.13.1 for Augustsvn2git-root
svn path=/trunk/externals/august/readanysf~/; revision=3426
Diffstat (limited to 'include/InputFile.h')
-rw-r--r--include/InputFile.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/InputFile.h b/include/InputFile.h
new file mode 100644
index 0000000..35f180c
--- /dev/null
+++ b/include/InputFile.h
@@ -0,0 +1,29 @@
+#ifndef _INPUTFILE_H_
+#define _INPUTFILE_H_
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
+#include "Input.h"
+
+class InputFile : public Input {
+ public:
+ InputFile();
+ virtual ~InputFile();
+
+ virtual int Open( const char *pathname );
+ virtual int Close();
+ virtual int Read( void *buf, unsigned int count );
+
+ virtual long SeekSet ( long offset );
+ virtual long SeekCur ( long offset );
+ virtual long SeekEnd ( long offset );
+ virtual float get_cachesize() { return 0.0; };
+ virtual bool get_recover( ) { return false; }
+ private:
+
+
+};
+#endif