MYuppy TrueType GB2312 font from Monotype Imaging Inc. (Bug 1899)
MYuppyGB-Medium
Format - TTF TrueType
Character set - GB2312
Encoding - Unicode
This font was designed to appeal to young urban professionals, Monotype Yuppy is a newly
designed typeface with a unique, modern feel. The design combines elements
of handwriting with classic letterform characteristics, such as open shapes
and proper proportions that help the typeface retain legibility.
/*
*
* (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
*
*/
#ifndef __FEATURES_H
#define __FEATURES_H
/**
* \file
* \internal
*/
#include "LETypes.h"
#include "OpenTypeTables.h"
U_NAMESPACE_BEGIN
struct FeatureRecord
{
ATag featureTag;
Offset featureTableOffset;
};
struct FeatureTable
{
Offset featureParamsOffset;
le_uint16 lookupCount;
le_uint16 lookupListIndexArray[ANY_NUMBER];
};
struct FeatureListTable
{
le_uint16 featureCount;
FeatureRecord featureRecordArray[ANY_NUMBER];
const FeatureTable *getFeatureTable(le_uint16 featureIndex, LETag *featureTag) const;
const FeatureTable *getFeatureTable(LETag featureTag) const;
};
U_NAMESPACE_END
#endif