2000-11-28 20:56:52 +00:00
|
|
|
/*
|
2000-12-21 02:44:45 +00:00
|
|
|
* @(#)NonContextualGlyphSubstProc.h 1.6 00/03/15
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
2001-01-19 00:30:17 +00:00
|
|
|
* (C) Copyright IBM Corp. 1998, 1999, 2000, 2001 - All Rights Reserved
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NONCONTEXTUALGLYPHSUBSTITUTIONPROCESSOR_H
|
|
|
|
#define __NONCONTEXTUALGLYPHSUBSTITUTIONPROCESSOR_H
|
|
|
|
|
|
|
|
#include "LETypes.h"
|
|
|
|
#include "MorphTables.h"
|
|
|
|
#include "SubtableProcessor.h"
|
2000-12-21 02:44:45 +00:00
|
|
|
#include "NonContextualGlyphSubst.h"
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
class NonContextualGlyphSubstitutionProcessor : public SubtableProcessor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void process(LEGlyphID *glyphs, le_int32 *charIndices, le_int32 glyphCount) = 0;
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
static SubtableProcessor *createInstance(const MorphSubtableHeader *morphSubtableHeader);
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
NonContextualGlyphSubstitutionProcessor();
|
2001-01-19 00:30:17 +00:00
|
|
|
NonContextualGlyphSubstitutionProcessor(const MorphSubtableHeader *morphSubtableHeader);
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
virtual ~NonContextualGlyphSubstitutionProcessor();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|