summaryrefslogtreecommitdiff
path: root/filter/pdftoopvp/oprs/OPVPSplashXPath.h
diff options
context:
space:
mode:
Diffstat (limited to 'filter/pdftoopvp/oprs/OPVPSplashXPath.h')
-rw-r--r--filter/pdftoopvp/oprs/OPVPSplashXPath.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/filter/pdftoopvp/oprs/OPVPSplashXPath.h b/filter/pdftoopvp/oprs/OPVPSplashXPath.h
deleted file mode 100644
index f51b868..0000000
--- a/filter/pdftoopvp/oprs/OPVPSplashXPath.h
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef OPVPSPLASHXPATH_H
-#define OPVPSPLASHXPATH_H
-
-#include <config.h>
-#ifdef HAVE_CPP_POPPLER_VERSION_H
-#include "cpp/poppler-version.h"
-#endif
-#include "splash/SplashXPath.h"
-#include "OPVPSplashPath.h"
-#include "OPVPSplashState.h"
-
-class OPVPSplash;
-
-class OPVPSplashXPath : public SplashXPath {
-public:
- OPVPSplashXPath(OPVPSplashPath *path, SplashCoord *matrix,
- SplashCoord flatness, GBool closeSubpaths) :
- SplashXPath(path,matrix,flatness,closeSubpaths) {
- }
-
- // Copy an expanded path.
- OPVPSplashXPath *copy() { return new OPVPSplashXPath(this); }
-
- OPVPSplashXPath *makeDashedPath(OPVPSplashState *state);
- void strokeNarrow(OPVPSplash *splash, OPVPSplashState *state);
-#if POPPLER_VERSION_MAJOR <= 0 && POPPLER_VERSION_MINOR < 19
- void strokeWide(OPVPSplash *splash, OPVPSplashState *state);
-#endif
-private:
-#if POPPLER_VERSION_MAJOR > 0 || POPPLER_VERSION_MINOR >= 19
- OPVPSplashXPath() : SplashXPath(new SplashPath(), 0, 0, gFalse) {};
-#else
- OPVPSplashXPath() {};
-#endif
- OPVPSplashXPath(OPVPSplashXPath *xPath) : SplashXPath(xPath) {
- }
-};
-
-#endif