Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-11 10:26:10

0001 //========================================================================
0002 //
0003 // SplashFontFileID.h
0004 //
0005 //========================================================================
0006 
0007 //========================================================================
0008 //
0009 // Modified under the Poppler project - http://poppler.freedesktop.org
0010 //
0011 // All changes made under the Poppler project to this file are licensed
0012 // under GPL version 2 or later
0013 //
0014 // Copyright (C) 2018 Albert Astals Cid <aacid@kde.org>
0015 //
0016 // To see a description of the changes please see the Changelog file that
0017 // came with your tarball or type make ChangeLog if you are building from git
0018 //
0019 //========================================================================
0020 
0021 #ifndef SPLASHFONTFILEID_H
0022 #define SPLASHFONTFILEID_H
0023 
0024 #include "poppler_private_export.h"
0025 
0026 //------------------------------------------------------------------------
0027 // SplashFontFileID
0028 //------------------------------------------------------------------------
0029 
0030 class POPPLER_PRIVATE_EXPORT SplashFontFileID
0031 {
0032 public:
0033     SplashFontFileID();
0034     virtual ~SplashFontFileID();
0035     SplashFontFileID(const SplashFontFileID &) = delete;
0036     SplashFontFileID &operator=(const SplashFontFileID &) = delete;
0037     virtual bool matches(SplashFontFileID *id) = 0;
0038 };
0039 
0040 #endif