From 876e1a4724a7bd75dc642e295de354241096e028 Mon Sep 17 00:00:00 2001 From: llornkcor Date: Fri, 20 Dec 2002 01:35:01 +0000 Subject: update - sorry it took so long. hope this works correctly --- (limited to 'noncore/apps/opie-reader/Text.h') diff --git a/noncore/apps/opie-reader/Text.h b/noncore/apps/opie-reader/Text.h deleted file mode 100644 index 4c689be..0000000 --- a/noncore/apps/opie-reader/Text.h +++ b/dev/null @@ -1,28 +0,0 @@ -#ifndef __Text_h -#define __Text_h -#include -#include -#include "CExpander.h" - -class Text: public CExpander { - FILE* file; -public: - Text() : file(NULL) {}; - virtual ~Text() { if (file != NULL) fclose(file); } - virtual int openfile(const tchar *src) - { - if (file != NULL) fclose(file); - return ((file = fopen(src,"rb")) == NULL); - } - virtual int getch() { return fgetc(file); } - virtual unsigned int locate() { return ftell(file); } - virtual void locate(unsigned int n) { fseek(file,n,SEEK_SET); } - virtual bool hasrandomaccess() { return true; } - virtual void sizes(unsigned long& _file, unsigned long& _text) - { - struct stat _stat; - fstat(fileno(file),&_stat); - _text = _file = _stat.st_size; - } -}; -#endif -- cgit v0.9.0.2