File: CoreOutputDev.h

package info (click to toggle)
xpdf 3.04%2Bgit20260220-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 860 kB
  • sloc: cpp: 10,143; python: 327; sh: 318; makefile: 65
file content (34 lines) | stat: -rw-r--r-- 840 bytes parent folder | download
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