SegmentSingleProcessor.h revision 2362
4033N/A/*
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
0N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/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
0N/A * or visit www.oracle.com if you need additional information or have any
5176N/A * questions.
0N/A *
0N/A */
4033N/A
4935N/A/*
0N/A *
1178N/A * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
1178N/A *
1178N/A */
4033N/A
1178N/A#ifndef __SEGMENTSINGLEPROCESSOR_H
1178N/A#define __SEGMENTSINGLEPROCESSOR_H
4033N/A
1178N/A/**
1178N/A * \file
4033N/A * \internal
1178N/A */
1178N/A
4935N/A#include "LETypes.h"
1178N/A#include "MorphTables.h"
1178N/A#include "SubtableProcessor.h"
4033N/A#include "NonContextualGlyphSubst.h"
1178N/A#include "NonContextualGlyphSubstProc.h"
1178N/A
4033N/AU_NAMESPACE_BEGIN
1178N/A
1178N/Aclass LEGlyphStorage;
4935N/A
1178N/Aclass SegmentSingleProcessor : public NonContextualGlyphSubstitutionProcessor
1178N/A{
4033N/Apublic:
1178N/A virtual void process(LEGlyphStorage &glyphStorage);
1178N/A
4033N/A SegmentSingleProcessor(const MorphSubtableHeader *morphSubtableHeader);
1178N/A
1178N/A virtual ~SegmentSingleProcessor();
1178N/A
4033N/A /**
0N/A * ICU "poor man's RTTI", returns a UClassID for the actual class.
0N/A *
0N/A * @stable ICU 2.8
0N/A */
0N/A virtual UClassID getDynamicClassID() const;
0N/A
4033N/A /**
0N/A * ICU "poor man's RTTI", returns a UClassID for this class.
0N/A *
0N/A * @stable ICU 2.8
0N/A */
0N/A static UClassID getStaticClassID();
4033N/A
0N/Aprivate:
0N/A SegmentSingleProcessor();
0N/A
0N/Aprotected:
4935N/A const SegmentSingleLookupTable *segmentSingleLookupTable;
0N/A
0N/A};
4935N/A
0N/AU_NAMESPACE_END
0N/A#endif
4935N/A
0N/A