1 | //======================================================================== |
2 | // |
3 | // SplashFontFileID.h |
4 | // |
5 | //======================================================================== |
6 | |
7 | //======================================================================== |
8 | // |
9 | // Modified under the Poppler project - http://poppler.freedesktop.org |
10 | // |
11 | // All changes made under the Poppler project to this file are licensed |
12 | // under GPL version 2 or later |
13 | // |
14 | // Copyright (C) 2018 Albert Astals Cid <aacid@kde.org> |
15 | // |
16 | // To see a description of the changes please see the Changelog file that |
17 | // came with your tarball or type make ChangeLog if you are building from git |
18 | // |
19 | //======================================================================== |
20 | |
21 | #ifndef SPLASHFONTFILEID_H |
22 | #define SPLASHFONTFILEID_H |
23 | |
24 | #include "poppler_private_export.h" |
25 | |
26 | //------------------------------------------------------------------------ |
27 | // SplashFontFileID |
28 | //------------------------------------------------------------------------ |
29 | |
30 | class POPPLER_PRIVATE_EXPORT SplashFontFileID |
31 | { |
32 | public: |
33 | SplashFontFileID(); |
34 | virtual ~SplashFontFileID(); |
35 | SplashFontFileID(const SplashFontFileID &) = delete; |
36 | SplashFontFileID &operator=(const SplashFontFileID &) = delete; |
37 | virtual bool matches(SplashFontFileID *id) = 0; |
38 | }; |
39 | |
40 | #endif |
41 | |