]> git.ipfire.org Git - thirdparty/cups.git/blame - pdftops/SplashFontFileID.h
Load cups into easysw/current.
[thirdparty/cups.git] / pdftops / SplashFontFileID.h
CommitLineData
ef416fc2 1//========================================================================
2//
3// SplashFontFileID.h
4//
5//========================================================================
6
7#ifndef SPLASHFONTFILEID_H
8#define SPLASHFONTFILEID_H
9
10#include <config.h>
11
12#ifdef USE_GCC_PRAGMAS
13#pragma interface
14#endif
15
16#include "gtypes.h"
17
18//------------------------------------------------------------------------
19// SplashFontFileID
20//------------------------------------------------------------------------
21
22class SplashFontFileID {
23public:
24
25 SplashFontFileID();
26 virtual ~SplashFontFileID();
27 virtual GBool matches(SplashFontFileID *id) = 0;
28};
29
30#endif