diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2006-10-06 09:54:57 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2006-10-06 09:54:57 +0000 |
commit | d449c410a7ca823910ac416ca5dd9604b16cdd89 (patch) | |
tree | e1b4be6ce833b14b8f823d2f25e7317950009c2a /Build/source/texk/xdv2pdf/SimplePSInterpreter.h | |
parent | 65e25e4262054c29d9bf925b5362ebea5b1385d8 (diff) |
added xdv2pdf driver for xetex (on OS X only)
git-svn-id: svn://tug.org/texlive/trunk@2246 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/xdv2pdf/SimplePSInterpreter.h')
-rw-r--r-- | Build/source/texk/xdv2pdf/SimplePSInterpreter.h | 21 |
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 |