summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-src/fofi/FoFiIdentifier.h
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-05-14 17:47:47 +0000
committerKarl Berry <karl@freefriends.org>2020-05-14 17:47:47 +0000
commit6e1a96b95f6423b72c0f2910ce53464859477907 (patch)
tree62680adee8d9d400428e1e2ca9b8bfabab283fd5 /Build/source/libs/poppler/poppler-src/fofi/FoFiIdentifier.h
parent4aabfd8ab8cb4d327dcbac9b7318ff1718e505d5 (diff)
remove poppler support from TL
git-svn-id: svn://tug.org/texlive/trunk@55138 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/poppler/poppler-src/fofi/FoFiIdentifier.h')
-rw-r--r--Build/source/libs/poppler/poppler-src/fofi/FoFiIdentifier.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/Build/source/libs/poppler/poppler-src/fofi/FoFiIdentifier.h b/Build/source/libs/poppler/poppler-src/fofi/FoFiIdentifier.h
deleted file mode 100644
index af1323b76d6..00000000000
--- a/Build/source/libs/poppler/poppler-src/fofi/FoFiIdentifier.h
+++ /dev/null
@@ -1,42 +0,0 @@
-//========================================================================
-//
-// FoFiIdentifier.h
-//
-// Copyright 2009 Glyph & Cog, LLC
-//
-//========================================================================
-
-#ifndef FOFIIDENTIFIER_H
-#define FOFIIDENTIFIER_H
-
-#ifdef USE_GCC_PRAGMAS
-#pragma interface
-#endif
-
-//------------------------------------------------------------------------
-// FoFiIdentifier
-//------------------------------------------------------------------------
-
-enum FoFiIdentifierType {
- fofiIdType1PFA, // Type 1 font in PFA format
- fofiIdType1PFB, // Type 1 font in PFB format
- fofiIdCFF8Bit, // 8-bit CFF font
- fofiIdCFFCID, // CID CFF font
- fofiIdTrueType, // TrueType font
- fofiIdTrueTypeCollection, // TrueType collection
- fofiIdOpenTypeCFF8Bit, // OpenType wrapper with 8-bit CFF font
- fofiIdOpenTypeCFFCID, // OpenType wrapper with CID CFF font
- fofiIdUnknown, // unknown type
- fofiIdError // error in reading the file
-};
-
-class FoFiIdentifier {
-public:
-
- static FoFiIdentifierType identifyMem(char *file, int len);
- static FoFiIdentifierType identifyFile(char *fileName);
- static FoFiIdentifierType identifyStream(int (*getChar)(void *data),
- void *data);
-};
-
-#endif