diff options
author | N.N <matju@users.sourceforge.net> | 2009-12-14 19:55:54 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 15:04:53 +0200 |
commit | c235f09fc5ef83827ac53375015f469cd7e13eec (patch) | |
tree | 4639e88e27e105709a2bbd6352cec17808fdc5c9 /include/InputFile.h | |
parent | 40194041a1efbf98c45185098e3795150a0128a4 (diff) |
import version 0.36
svn path=/trunk/externals/august/readanysf~/; revision=12836
Diffstat (limited to 'include/InputFile.h')
-rw-r--r-- | include/InputFile.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/include/InputFile.h b/include/InputFile.h deleted file mode 100644 index 35f180c..0000000 --- a/include/InputFile.h +++ /dev/null @@ -1,29 +0,0 @@ -#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 |