blob: 47ececa38d5f6d2b573d7bd5e7ed4230efc6e13c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|