~alinuxninja/nginx-edge/trunk

« back to all changes in this revision

Viewing changes to debian/modules/ngx_pagespeed/psol/include/third_party/icu/source/layout/MarkToBasePosnSubtables.h

  • Committer: Vivian
  • Date: 2015-12-04 18:20:11 UTC
  • Revision ID: git-v1:a36f2bc32e884f7473b3a47040e5411306144d7d
* Do not extract psol.tar.gz

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *
3
 
 * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
4
 
 *
5
 
 */
6
 
 
7
 
#ifndef __MARKTOBASEPOSITIONINGSUBTABLES_H
8
 
#define __MARKTOBASEPOSITIONINGSUBTABLES_H
9
 
 
10
 
/**
11
 
 * \file
12
 
 * \internal
13
 
 */
14
 
 
15
 
#include "LETypes.h"
16
 
#include "LEFontInstance.h"
17
 
#include "OpenTypeTables.h"
18
 
#include "GlyphPositioningTables.h"
19
 
#include "AttachmentPosnSubtables.h"
20
 
#include "GlyphIterator.h"
21
 
 
22
 
U_NAMESPACE_BEGIN
23
 
 
24
 
struct MarkToBasePositioningSubtable : AttachmentPositioningSubtable
25
 
{
26
 
    le_int32   process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
27
 
    LEGlyphID  findBaseGlyph(GlyphIterator *glyphIterator) const;
28
 
};
29
 
 
30
 
struct BaseRecord
31
 
{
32
 
    Offset baseAnchorTableOffsetArray[ANY_NUMBER];
33
 
};
34
 
 
35
 
struct BaseArray
36
 
{
37
 
    le_int16 baseRecordCount;
38
 
    BaseRecord baseRecordArray[ANY_NUMBER];
39
 
};
40
 
 
41
 
U_NAMESPACE_END
42
 
#endif
43