TrimmedArrayProcessor2.h revision 5891
4169N/A/*
1178N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1178N/A *
1178N/A * This code is free software; you can redistribute it and/or modify it
1178N/A * under the terms of the GNU General Public License version 2 only, as
1178N/A * published by the Free Software Foundation. Oracle designates this
1178N/A * particular file as subject to the "Classpath" exception as provided
1178N/A * by Oracle in the LICENSE file that accompanied this code.
1178N/A *
1178N/A * This code is distributed in the hope that it will be useful, but WITHOUT
1178N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1178N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1178N/A * version 2 for more details (a copy is included in the LICENSE file that
1178N/A * accompanied this code).
1178N/A *
1178N/A * You should have received a copy of the GNU General Public License version
1178N/A * 2 along with this work; if not, write to the Free Software Foundation,
2362N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2362N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1178N/A * or visit www.oracle.com if you need additional information or have any
5176N/A * questions.
1178N/A *
1178N/A */
4033N/A
4935N/A/*
1178N/A *
1178N/A * (C) Copyright IBM Corp. and others 1998-2013 - All Rights Reserved
1178N/A *
1178N/A */
4033N/A
1178N/A#ifndef __TRIMMEDARRAYPROCESSOR2_H
1178N/A#define __TRIMMEDARRAYPROCESSOR2_H
4033N/A
1178N/A/**
1178N/A * \file
4033N/A * \internal
1178N/A */
1178N/A
4033N/A#include "LETypes.h"
1178N/A#include "MorphTables.h"
1178N/A#include "SubtableProcessor2.h"
4033N/A#include "NonContextualGlyphSubst.h"
1178N/A#include "NonContextualGlyphSubstProc2.h"
1178N/A
1178N/AU_NAMESPACE_BEGIN
4033N/A
1178N/Aclass LEGlyphStorage;
1178N/A
1178N/Aclass TrimmedArrayProcessor2 : public NonContextualGlyphSubstitutionProcessor2
1178N/A{
1178N/Apublic:
1178N/A virtual void process(LEGlyphStorage &glyphStorage);
1178N/A
1178N/A TrimmedArrayProcessor2(const MorphSubtableHeader2 *morphSubtableHeader);
1178N/A
1178N/A virtual ~TrimmedArrayProcessor2();
1178N/A
1178N/A /**
1178N/A * ICU "poor man's RTTI", returns a UClassID for the actual class.
4033N/A *
1178N/A * @stable ICU 2.8
1178N/A */
1178N/A virtual UClassID getDynamicClassID() const;
1178N/A
4033N/A /**
1178N/A * ICU "poor man's RTTI", returns a UClassID for this class.
1178N/A *
4935N/A * @stable ICU 2.8
0N/A */
1178N/A static UClassID getStaticClassID();
1178N/A
4935N/Aprivate:
1178N/A TrimmedArrayProcessor2();
1178N/A
1178N/Aprotected:
4935N/A TTGlyphID firstGlyph;
1178N/A TTGlyphID lastGlyph;
1178N/A const TrimmedArrayLookupTable *trimmedArrayLookupTable;
1178N/A
4935N/A};
1178N/A
1178N/AU_NAMESPACE_END
1178N/A#endif
4935N/A