2013-02-06 07:01:19 +00:00
|
|
|
/*
|
|
|
|
*
|
2016-05-31 21:45:07 +00:00
|
|
|
* (C) Copyright IBM Corp. and others 1998-2014 - All Rights Reserved
|
2013-02-06 07:01:19 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SEGMENTARRAYPROCESSOR_H
|
|
|
|
#define __SEGMENTARRAYPROCESSOR_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \internal
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "LETypes.h"
|
|
|
|
#include "MorphTables.h"
|
|
|
|
#include "SubtableProcessor2.h"
|
|
|
|
#include "NonContextualGlyphSubst.h"
|
|
|
|
#include "NonContextualGlyphSubstProc2.h"
|
|
|
|
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
class LEGlyphStorage;
|
|
|
|
|
|
|
|
class SegmentArrayProcessor2 : public NonContextualGlyphSubstitutionProcessor2
|
|
|
|
{
|
|
|
|
public:
|
2013-04-18 21:24:51 +00:00
|
|
|
virtual void process(LEGlyphStorage &glyphStorage, LEErrorCode &success);
|
2013-02-06 07:01:19 +00:00
|
|
|
|
2013-04-18 21:24:51 +00:00
|
|
|
SegmentArrayProcessor2(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success);
|
2013-02-06 07:01:19 +00:00
|
|
|
|
|
|
|
virtual ~SegmentArrayProcessor2();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ICU "poor man's RTTI", returns a UClassID for the actual class.
|
|
|
|
*
|
2014-09-05 22:09:11 +00:00
|
|
|
* @deprecated ICU 54. See {@link icu::LayoutEngine}
|
2013-02-06 07:01:19 +00:00
|
|
|
*/
|
|
|
|
virtual UClassID getDynamicClassID() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ICU "poor man's RTTI", returns a UClassID for this class.
|
|
|
|
*
|
2014-09-05 22:09:11 +00:00
|
|
|
* @deprecated ICU 54. See {@link icu::LayoutEngine}
|
2013-02-06 07:01:19 +00:00
|
|
|
*/
|
|
|
|
static UClassID getStaticClassID();
|
|
|
|
|
|
|
|
private:
|
|
|
|
SegmentArrayProcessor2();
|
|
|
|
|
|
|
|
protected:
|
2013-04-18 21:24:51 +00:00
|
|
|
LEReferenceTo<SegmentArrayLookupTable> segmentArrayLookupTable;
|
2013-02-06 07:01:19 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
U_NAMESPACE_END
|
|
|
|
#endif
|
|
|
|
|