Update contrib.
2 **********************************************************************
3 * Copyright (C) 2003, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
8 #ifndef __FONTTABLECACHE_H
10 #define __FONTTABLECACHE_H
12 #include "layout/LETypes.h"
14 struct FontTableCacheEntry;
21 virtual ~FontTableCache();
23 const void *find(LETag tableTag) const;
26 virtual const void *readFontTable(LETag tableTag) const = 0;
30 void add(LETag tableTag, const void *table);
32 FontTableCacheEntry *fTableCache;
33 le_int32 fTableCacheCurr;
34 le_int32 fTableCacheSize;