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 /src/Input.cpp | |
parent | 40194041a1efbf98c45185098e3795150a0128a4 (diff) |
import version 0.36
svn path=/trunk/externals/august/readanysf~/; revision=12836
Diffstat (limited to 'src/Input.cpp')
-rw-r--r-- | src/Input.cpp | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/src/Input.cpp b/src/Input.cpp deleted file mode 100644 index 549528d..0000000 --- a/src/Input.cpp +++ /dev/null @@ -1,56 +0,0 @@ -#include "Input.h" -#include <iostream.h> - - -Input::Input () -{ - fd = 0; - format = -1; - verbosity = 1; - recover=false; -} - -Input::~Input () -{ -} - -int -Input::Open (const char *pathname) -{ - return -1; -} - -int -Input::Close () -{ - return -1; -} - -int -Input::Read (void *buf, unsigned int count) -{ - return -1; -} - -long -Input::SeekSet (long offset) -{ - return -1; -} - -long -Input::SeekCur (long offset) -{ - return -1; -} - -long -Input::SeekEnd (long offset) -{ - return -1; -} -float -Input::get_cachesize () -{ - return 0.0; -} |