a53e8c0623
X-SVN-Rev: 6256
29 lines
663 B
C++
29 lines
663 B
C++
/*
|
|
* @(#)Features.cpp 1.4 00/03/15
|
|
*
|
|
* (C) Copyright IBM Corp. 1998, 1999, 2000, 2001 - All Rights Reserved
|
|
*
|
|
*/
|
|
|
|
#include "LETypes.h"
|
|
#include "OpenTypeTables.h"
|
|
#include "Features.h"
|
|
#include "LESwaps.h"
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
const FeatureTable *FeatureListTable::getFeatureTable(le_uint16 featureIndex, LETag *featureTag) const
|
|
{
|
|
if (featureIndex >= SWAPW(featureCount)) {
|
|
return 0;
|
|
}
|
|
|
|
Offset featureTableOffset = featureRecordArray[featureIndex].featureTableOffset;
|
|
|
|
*featureTag = SWAPT(featureRecordArray[featureIndex].featureTag);
|
|
|
|
return (const FeatureTable *) ((char *) this + SWAPW(featureTableOffset));
|
|
}
|
|
|
|
U_NAMESPACE_END
|