~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/GlyphLookupTables.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 __GLYPHLOOKUPTABLES_H
8
 
#define __GLYPHLOOKUPTABLES_H
9
 
 
10
 
/**
11
 
 * \file
12
 
 * \internal
13
 
 */
14
 
 
15
 
#include "LETypes.h"
16
 
#include "OpenTypeTables.h"
17
 
 
18
 
U_NAMESPACE_BEGIN
19
 
 
20
 
struct GlyphLookupTableHeader
21
 
{
22
 
    fixed32 version;
23
 
    Offset  scriptListOffset;
24
 
    Offset  featureListOffset;
25
 
    Offset  lookupListOffset;
26
 
 
27
 
    le_bool coversScript(LETag scriptTag) const;
28
 
    le_bool coversScriptAndLanguage(LETag scriptTag, LETag languageTag, le_bool exactMatch = FALSE) const;
29
 
};
30
 
 
31
 
U_NAMESPACE_END
32
 
 
33
 
#endif
34