summaryrefslogtreecommitdiff
path: root/Build/source/texk/xdv2pdf/SimplePSInterpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/xdv2pdf/SimplePSInterpreter.h')
-rw-r--r--Build/source/texk/xdv2pdf/SimplePSInterpreter.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Build/source/texk/xdv2pdf/SimplePSInterpreter.h b/Build/source/texk/xdv2pdf/SimplePSInterpreter.h
new file mode 100644
index 00000000000..47ececa38d5
--- /dev/null
+++ b/Build/source/texk/xdv2pdf/SimplePSInterpreter.h
@@ -0,0 +1,21 @@
+//
+// SimplePSInterpreter.h
+// T1Wrap
+//
+// Created by Massimiliano Gubinelli on 10/02/2005.
+// Copyright 2005 Massimilano Gubinelli. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+
+@interface SimplePSInterpreter : NSObject {
+ NSMutableArray *stack, *dicts;
+ NSMutableDictionary *fontDir;
+ NSMutableString *inputStream;
+ NSScanner *sc;
+ int nStoringProc;
+}
+- (void)doString:(NSString *)anInputString;
+- (NSDictionary*)fontDir;
+@end