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

« back to all changes in this revision

Viewing changes to source/layout/ScriptAndLanguage.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2005-05-21 22:44:31 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: package-import@ubuntu.com-20050521224431-r7rktfhnu1n4tf1g
Tags: 2.1-2.1
Rename icu-doc to icu21-doc. icu-doc is built by the icu28 package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
struct ScriptTable
27
27
{
28
 
    Offset                              defaultLangSysTableOffset;
29
 
    le_uint16                   langSysCount;
30
 
    LangSysRecord               langSysRecordArray[ANY_NUMBER];
 
28
    Offset              defaultLangSysTableOffset;
 
29
    le_uint16           langSysCount;
 
30
    LangSysRecord       langSysRecordArray[ANY_NUMBER];
31
31
 
32
 
    const LangSysTable  *findLanguage(LETag languageTag) const;
 
32
    const LangSysTable  *findLanguage(LETag languageTag) const;
33
33
};
34
34
 
35
35
typedef TagAndOffsetRecord ScriptRecord;
36
36
 
37
37
struct ScriptListTable
38
38
{
39
 
    le_uint16                   scriptCount;
40
 
    ScriptRecord                scriptRecordArray[ANY_NUMBER];
 
39
    le_uint16           scriptCount;
 
40
    ScriptRecord        scriptRecordArray[ANY_NUMBER];
41
41
 
42
 
    const ScriptTable   *findScript(LETag scriptTag) const;
43
 
    const LangSysTable  *findLanguage(LETag scriptTag, LETag languageTag) const;
 
42
    const ScriptTable   *findScript(LETag scriptTag) const;
 
43
    const LangSysTable  *findLanguage(LETag scriptTag, LETag languageTag) const;
44
44
};
45
45
 
46
46
U_NAMESPACE_END