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

« back to all changes in this revision

Viewing changes to source/layout/GlyphPosnLookupProc.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
 
 * @(#)GlyphPosnLookupProc.h    1.7 00/03/15
3
 
 *
4
 
 * (C) Copyright IBM Corp. 1998, 1999, 2000, 2001 - All Rights Reserved
5
 
 *
6
 
 */
7
 
 
8
 
#ifndef __GLYPHPOSITIONINGLOOKUPPROCESSOR_H
9
 
#define __GLYPHPOSITIONINGLOOKUPPROCESSOR_H
10
 
 
11
 
#include "LETypes.h"
12
 
#include "LEFontInstance.h"
13
 
#include "OpenTypeTables.h"
14
 
#include "Lookups.h"
15
 
#include "Features.h"
16
 
#include "GlyphDefinitionTables.h"
17
 
#include "GlyphPositioningTables.h"
18
 
#include "GlyphIterator.h"
19
 
#include "LookupProcessor.h"
20
 
 
21
 
U_NAMESPACE_BEGIN
22
 
 
23
 
class GlyphPositioningLookupProcessor : public LookupProcessor
24
 
{
25
 
public:
26
 
    GlyphPositioningLookupProcessor(const GlyphPositioningTableHeader *glyphPositioningTableHeader,
27
 
        LETag scriptTag, LETag languageTag, const LETag *featureOrder);
28
 
 
29
 
    virtual ~GlyphPositioningLookupProcessor();
30
 
 
31
 
    virtual le_uint32 applySubtable(const LookupSubtable *lookupSubtable, le_uint16 lookupType, GlyphIterator *glyphIterator,
32
 
        const LEFontInstance *fontInstance) const;
33
 
 
34
 
protected:
35
 
    GlyphPositioningLookupProcessor();
36
 
};
37
 
 
38
 
U_NAMESPACE_END
39
 
#endif