~ubuntu-branches/ubuntu/gutsy/icu/gutsy-updates

« back to all changes in this revision

Viewing changes to source/layout/GlyphSubstLookupProc.h

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2005-11-19 11:29:31 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20051119112931-vcizkrp10tli4enw
Tags: 3.4-3
Explicitly build with g++ 3.4.  The current ICU fails its test suite
with 4.0 but not with 3.4.  Future versions should work properly with
4.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * %W% %E%
3
 
 *
4
 
 * (C) Copyright IBM Corp. 1998, 1999, 2000, 2001 - All Rights Reserved
5
 
 *
6
 
 */
7
 
 
8
 
#ifndef __GLYPHSUBSTITUTIONLOOKUPPROCESSOR_H
9
 
#define __GLYPHSUBSTITUTIONLOOKUPPROCESSOR_H
10
 
 
11
 
#include "LETypes.h"
12
 
#include "LEGlyphFilter.h"
13
 
#include "LEFontInstance.h"
14
 
#include "OpenTypeTables.h"
15
 
#include "Lookups.h"
16
 
#include "Features.h"
17
 
#include "GlyphDefinitionTables.h"
18
 
#include "GlyphSubstitutionTables.h"
19
 
#include "GlyphIterator.h"
20
 
#include "LookupProcessor.h"
21
 
 
22
 
U_NAMESPACE_BEGIN
23
 
 
24
 
class GlyphSubstitutionLookupProcessor : public LookupProcessor
25
 
{
26
 
public:
27
 
    GlyphSubstitutionLookupProcessor(const GlyphSubstitutionTableHeader *glyphSubstitutionTableHeader,
28
 
        LETag scriptTag, LETag languageTag, const LEGlyphFilter *filter = NULL, const LETag *featureOrder = NULL);
29
 
 
30
 
    virtual ~GlyphSubstitutionLookupProcessor();
31
 
 
32
 
    virtual le_uint32 applySubtable(const LookupSubtable *lookupSubtable, le_uint16 lookupType, GlyphIterator *glyphIterator,
33
 
        const LEFontInstance *fontInstance) const;
34
 
 
35
 
protected:
36
 
    GlyphSubstitutionLookupProcessor();
37
 
 
38
 
private:
39
 
    const LEGlyphFilter *fFilter;
40
 
};
41
 
 
42
 
U_NAMESPACE_END
43
 
#endif