diff options
Diffstat (limited to 'Build/source/libs/xpdf/xpdf-3.02/splash/SplashFontFileID.h')
-rw-r--r-- | Build/source/libs/xpdf/xpdf-3.02/splash/SplashFontFileID.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Build/source/libs/xpdf/xpdf-3.02/splash/SplashFontFileID.h b/Build/source/libs/xpdf/xpdf-3.02/splash/SplashFontFileID.h new file mode 100644 index 00000000000..bed11d336e0 --- /dev/null +++ b/Build/source/libs/xpdf/xpdf-3.02/splash/SplashFontFileID.h @@ -0,0 +1,30 @@ +//======================================================================== +// +// SplashFontFileID.h +// +//======================================================================== + +#ifndef SPLASHFONTFILEID_H +#define SPLASHFONTFILEID_H + +#include <aconf.h> + +#ifdef USE_GCC_PRAGMAS +#pragma interface +#endif + +#include "gtypes.h" + +//------------------------------------------------------------------------ +// SplashFontFileID +//------------------------------------------------------------------------ + +class SplashFontFileID { +public: + + SplashFontFileID(); + virtual ~SplashFontFileID(); + virtual GBool matches(SplashFontFileID *id) = 0; +}; + +#endif |