Updated Danish translation
[dasher.git] / Src / MacOSX / ZippyCache.h
blob4b758281066bf3db13afb6c792c8be551d4c1d88
1 //
2 // ZippyCache.h
3 // RectAl
4 //
5 // Created by Doug Dickinson on Mon May 26 2003.
6 // Copyright (c) 2003 Doug Dickinson (dasher AT DressTheMonkey DOT plus DOT com). All rights reserved.
7 //
9 #import <Foundation/NSObject.h>
10 #import <Foundation/NSGeometry.h>
12 //#define ZIPPY_STRING_GLYPH
14 @class ZippyString;
15 @class NSMutableDictionary, NSString, NSDictionary, NSNumber;
17 @interface ZippyCache : NSObject {
18 NSMutableDictionary *_cache;
21 + zippyCache;
23 - (ZippyString *)zippyStringWithString:(NSString *)aString size:(int)aSize attributes:(NSDictionary *)someAttributes;
25 - (NSNumber *)sizeKeyForSize:(int)aSize;
26 - (void)flush;
28 - (NSMutableDictionary *)cache;
29 - (void)setCache:(NSMutableDictionary *)newCache;
31 @end