mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
40 lines
774 B
C++
40 lines
774 B
C++
/*
|
|
**********************************************************************
|
|
* Copyright (C) 2003-2007, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
**********************************************************************
|
|
*/
|
|
|
|
#ifndef __FONTTABLECACHE_H
|
|
|
|
#define __FONTTABLECACHE_H
|
|
|
|
#include "layout/LETypes.h"
|
|
|
|
U_NAMESPACE_USE
|
|
|
|
struct FontTableCacheEntry;
|
|
|
|
class FontTableCache
|
|
{
|
|
public:
|
|
FontTableCache();
|
|
|
|
virtual ~FontTableCache();
|
|
|
|
const void *find(LETag tableTag) const;
|
|
|
|
protected:
|
|
virtual const void *readFontTable(LETag tableTag) const = 0;
|
|
|
|
private:
|
|
|
|
void add(LETag tableTag, const void *table);
|
|
|
|
FontTableCacheEntry *fTableCache;
|
|
le_int32 fTableCacheCurr;
|
|
le_int32 fTableCacheSize;
|
|
};
|
|
|
|
#endif
|
|
|