summaryrefslogtreecommitdiffstats
path: root/kpdf/xpdf/splash/SplashPattern.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kpdf/xpdf/splash/SplashPattern.cc')
-rw-r--r--kpdf/xpdf/splash/SplashPattern.cc40
1 files changed, 0 insertions, 40 deletions
diff --git a/kpdf/xpdf/splash/SplashPattern.cc b/kpdf/xpdf/splash/SplashPattern.cc
deleted file mode 100644
index e6a37852..00000000
--- a/kpdf/xpdf/splash/SplashPattern.cc
+++ /dev/null
@@ -1,40 +0,0 @@
-//========================================================================
-//
-// SplashPattern.cc
-//
-//========================================================================
-
-#include <aconf.h>
-
-#ifdef USE_GCC_PRAGMAS
-#pragma implementation
-#endif
-
-#include "SplashMath.h"
-#include "SplashScreen.h"
-#include "SplashPattern.h"
-
-//------------------------------------------------------------------------
-// SplashPattern
-//------------------------------------------------------------------------
-
-SplashPattern::SplashPattern() {
-}
-
-SplashPattern::~SplashPattern() {
-}
-
-//------------------------------------------------------------------------
-// SplashSolidColor
-//------------------------------------------------------------------------
-
-SplashSolidColor::SplashSolidColor(SplashColorPtr colorA) {
- splashColorCopy(color, colorA);
-}
-
-SplashSolidColor::~SplashSolidColor() {
-}
-
-void SplashSolidColor::getColor(int /*x*/, int /*y*/, SplashColorPtr c) {
- splashColorCopy(c, color);
-}