Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/PBMOutputDev.h
diff options
context:
space:
mode:
Diffstat (limited to 'pdf/xpdf/PBMOutputDev.h')
-rw-r--r--pdf/xpdf/PBMOutputDev.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/pdf/xpdf/PBMOutputDev.h b/pdf/xpdf/PBMOutputDev.h
deleted file mode 100644
index 9d1539d..0000000
--- a/pdf/xpdf/PBMOutputDev.h
+++ /dev/null
@@ -1,64 +0,0 @@
-//========================================================================
-//
-// PBMOutputDev.h
-//
-// Copyright 1998-2003 Glyph & Cog, LLC
-//
-//========================================================================
-
-#ifndef PBMOUTPUTDEV_H
-#define PBMOUTPUTDEV_H
-
-#include <aconf.h>
-
-#ifdef USE_GCC_PRAGMAS
-#pragma interface
-#endif
-
-#include <stddef.h>
-#include "config.h"
-#include "XOutputDev.h"
-
-//------------------------------------------------------------------------
-
-class PBMOutputDev: public XOutputDev {
-public:
-
- // NB: Users must use makePBMOutputDev and killPBMOutputDev rather
- // than the constructor and destructor. (This is due to some
- // constraints in the underlying XOutputDev object.)
-
- static PBMOutputDev *makePBMOutputDev(char *displayName,
- char *fileRootA);
-
- static void killPBMOutputDev(PBMOutputDev *out);
-
- virtual ~PBMOutputDev();
-
- //----- initialization and control
-
- // Start a page.
- virtual void startPage(int pageNum, GfxState *state);
-
- // End a page.
- virtual void endPage();
-
-private:
-
- PBMOutputDev(Display *displayA, int screenA,
- Pixmap pixmapA, Window dummyWinA,
- int invertA, char *fileRootA);
-
- char *fileRoot;
- char *fileName;
- int curPage;
-
- Display *display;
- int screen;
- Pixmap pixmap;
- Window dummyWin;
- int width, height;
- int invert;
-};
-
-#endif