diff options
Diffstat (limited to 'Build/source/libs/xpdf/xpdf-3.02/splash/SplashPattern.cc')
-rw-r--r-- | Build/source/libs/xpdf/xpdf-3.02/splash/SplashPattern.cc | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Build/source/libs/xpdf/xpdf-3.02/splash/SplashPattern.cc b/Build/source/libs/xpdf/xpdf-3.02/splash/SplashPattern.cc new file mode 100644 index 00000000000..b77658ef43c --- /dev/null +++ b/Build/source/libs/xpdf/xpdf-3.02/splash/SplashPattern.cc @@ -0,0 +1,40 @@ +//======================================================================== +// +// 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); +} |