mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
34 lines
989 B
C++
34 lines
989 B
C++
/*
|
|
*
|
|
* (C) Copyright IBM Corp. 1998 - 2004 - All Rights Reserved
|
|
*
|
|
*/
|
|
|
|
#include "LETypes.h"
|
|
#include "OpenTypeTables.h"
|
|
#include "GlyphDefinitionTables.h"
|
|
#include "LESwaps.h"
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
const GlyphClassDefinitionTable *GlyphDefinitionTableHeader::getGlyphClassDefinitionTable() const
|
|
{
|
|
return (const GlyphClassDefinitionTable *) ((char *) this + SWAPW(glyphClassDefOffset));
|
|
}
|
|
|
|
const AttachmentListTable *GlyphDefinitionTableHeader::getAttachmentListTable() const
|
|
{
|
|
return (const AttachmentListTable *) ((char *) this + SWAPW(attachListOffset));
|
|
}
|
|
|
|
const LigatureCaretListTable *GlyphDefinitionTableHeader::getLigatureCaretListTable() const
|
|
{
|
|
return (const LigatureCaretListTable *) ((char *) this + SWAPW(ligCaretListOffset));
|
|
}
|
|
|
|
const MarkAttachClassDefinitionTable *GlyphDefinitionTableHeader::getMarkAttachClassDefinitionTable() const
|
|
{
|
|
return (const MarkAttachClassDefinitionTable *) ((char *) this + SWAPW(MarkAttachClassDefOffset));
|
|
}
|
|
|
|
U_NAMESPACE_END
|