2000-11-28 20:56:52 +00:00
|
|
|
/*
|
|
|
|
* @(#)SimpleArrayProcessor.h 1.6 00/03/15
|
|
|
|
*
|
|
|
|
* (C) Copyright IBM Corp. 1998, 1999, 2000 - All Rights Reserved
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SIMPLEARRAYPROCESSOR_H
|
|
|
|
#define __SIMPLEARRAYPROCESSOR_H
|
|
|
|
|
|
|
|
#include "LETypes.h"
|
|
|
|
#include "MorphTables.h"
|
|
|
|
#include "SubtableProcessor.h"
|
2000-12-21 02:52:24 +00:00
|
|
|
#include "NonContextualGlyphSubst.h"
|
|
|
|
#include "NonContextualGlyphSubstProc.h"
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
class SimpleArrayProcessor : public NonContextualGlyphSubstitutionProcessor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void process(LEGlyphID *glyphs, le_int32 *charIndices, le_int32 glyphCount);
|
|
|
|
|
|
|
|
SimpleArrayProcessor(MorphSubtableHeader *morphSubtableHeader);
|
|
|
|
|
|
|
|
virtual ~SimpleArrayProcessor();
|
|
|
|
|
|
|
|
private:
|
|
|
|
SimpleArrayProcessor();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
SimpleArrayLookupTable *simpleArrayLookupTable;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|