1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
//========================================================================
//
// CoreOutputDev.h
//
// Copyright 2004 Glyph & Cog, LLC
// Copyright 2026 Adam Sampson <ats@offog.org>
//
//========================================================================
#ifndef COREOUTPUTDEV_H
#define COREOUTPUTDEV_H
#include <SplashOutputDev.h>
#include <splash/SplashTypes.h>
//------------------------------------------------------------------------
// CoreOutputDev
//------------------------------------------------------------------------
class CoreOutputDev: public SplashOutputDev {
public:
CoreOutputDev(SplashColorMode colorModeA, int bitmapRowPadA,
SplashColorPtr paperColorA);
virtual ~CoreOutputDev();
//----- special access
// Clear out the document (used when displaying an empty window).
void clear();
};
#endif
|