summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/ppm_expander.h
authorgroucho <groucho>2003-05-07 09:01:39 (UTC)
committer groucho <groucho>2003-05-07 09:01:39 (UTC)
commit118d03d815a7615b9c53363218a7ac45b3f4c514 (patch) (side-by-side diff)
tree356953e2413cddcec0f35bd47bb6439767da7051 /noncore/apps/opie-reader/ppm_expander.h
parent00894537decf01c5a5cdc565b2740b5e67a2e90f (diff)
downloadopie-118d03d815a7615b9c53363218a7ac45b3f4c514.zip
opie-118d03d815a7615b9c53363218a7ac45b3f4c514.tar.gz
opie-118d03d815a7615b9c53363218a7ac45b3f4c514.tar.bz2
Incorporated TimWs current source tree and make it compile
Diffstat (limited to 'noncore/apps/opie-reader/ppm_expander.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-reader/ppm_expander.h25
1 files changed, 14 insertions, 11 deletions
diff --git a/noncore/apps/opie-reader/ppm_expander.h b/noncore/apps/opie-reader/ppm_expander.h
index 4278c82..002de86 100644
--- a/noncore/apps/opie-reader/ppm_expander.h
+++ b/noncore/apps/opie-reader/ppm_expander.h
@@ -1,6 +1,7 @@
#ifndef __ppm_expander_h
#define __ppm_expander_h
-
+
+#include "useqpe.h"
#include "CExpander.h"
#include <sys/stat.h>
@@ -26,14 +27,16 @@ class ppm_expander : public CExpander {
PPM_ReadBuf* my_read_buf;
ppm_worker ppm;
public:
- virtual void suspend()
+#ifdef USEQPE
+ void suspend()
{
CExpander::suspend(my_file_in);
}
- virtual void unsuspend()
+ void unsuspend()
{
CExpander::unsuspend(my_file_in);
- }
+ }
+#endif
ppm_expander() : needppmend(false), my_file_in(NULL), my_read_buf(NULL)
{
bufsize = 1024;
@@ -41,15 +44,15 @@ public:
buf_out = new UCHAR[bufsize];
outbytes = 0;
}
- virtual int OpenFile(const char* infile);
- virtual int getch();
+ int OpenFile(const char* infile);
+ int getch();
int locate(unsigned short block, unsigned int n);
virtual ~ppm_expander();
- virtual unsigned int locate() { return outbytes; }
- virtual void locate(unsigned int n);
- virtual bool hasrandomaccess() { return (numblocks > 1); }
- virtual void sizes(unsigned long& file, unsigned long& text);
- virtual MarkupType PreferredMarkup()
+ unsigned int locate() { return outbytes; }
+ void locate(unsigned int n);
+ bool hasrandomaccess() { return (numblocks > 1); }
+ void sizes(unsigned long& file, unsigned long& text);
+ MarkupType PreferredMarkup()
{
return cTEXT;
}