summaryrefslogtreecommitdiff
path: root/Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/efont/encoding.hh
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/efont/encoding.hh')
-rw-r--r--Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/efont/encoding.hh27
1 files changed, 0 insertions, 27 deletions
diff --git a/Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/efont/encoding.hh b/Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/efont/encoding.hh
deleted file mode 100644
index eb7aa004f28..00000000000
--- a/Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/efont/encoding.hh
+++ /dev/null
@@ -1,27 +0,0 @@
-// -*- related-file-name: "../../libefont/encoding.cc" -*-
-#ifndef EFONT_ENCODING_HH
-#define EFONT_ENCODING_HH
-#include <lcdf/vector.hh>
-namespace Efont {
-typedef int GlyphIndex;
-
-class Encoding8 {
-
- Vector<GlyphIndex> _codes;
- Vector<int> _code_map;
-
- public:
-
- Encoding8() : _code_map(256, -1) { }
-
- void reserve_glyphs(int);
-
- int code(GlyphIndex gi) const { return _codes[gi]; }
- GlyphIndex find_code(int c) const { return _code_map[c]; }
-
- void set_code(GlyphIndex gi, int c) { _codes[gi] = c; _code_map[c] = gi; }
-
-};
-
-}
-#endif