summaryrefslogtreecommitdiff
path: root/Build/source/texk/lcdf-typetools/lcdf-typetools-src/otftotfm/setting.hh
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/lcdf-typetools/lcdf-typetools-src/otftotfm/setting.hh')
-rw-r--r--Build/source/texk/lcdf-typetools/lcdf-typetools-src/otftotfm/setting.hh18
1 files changed, 0 insertions, 18 deletions
diff --git a/Build/source/texk/lcdf-typetools/lcdf-typetools-src/otftotfm/setting.hh b/Build/source/texk/lcdf-typetools/lcdf-typetools-src/otftotfm/setting.hh
deleted file mode 100644
index af1854174b2..00000000000
--- a/Build/source/texk/lcdf-typetools/lcdf-typetools-src/otftotfm/setting.hh
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef OTFTOTFM_SETTING_HH
-#define OTFTOTFM_SETTING_HH
-#include <lcdf/string.hh>
-
-struct Setting {
- enum { NONE, FONT, SHOW, KERN, KERNX, MOVE, RULE, PUSH, POP,
- SPECIAL, DEAD };
- int op;
- int x;
- int y;
- String s;
- Setting(int op_in, int x_in = 0, int y_in = 0)
- : op(op_in), x(x_in), y(y_in) { }
- Setting(int op_in, const String &s_in) : op(op_in), s(s_in) { }
- bool valid_op() const { return op >= FONT && op <= SPECIAL; }
-};
-
-#endif