IndicRearrangement.h revision 2362
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk/*
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk *
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * This code is free software; you can redistribute it and/or modify it
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * under the terms of the GNU General Public License version 2 only, as
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * published by the Free Software Foundation. Oracle designates this
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * particular file as subject to the "Classpath" exception as provided
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * by Oracle in the LICENSE file that accompanied this code.
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk *
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * This code is distributed in the hope that it will be useful, but WITHOUT
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * version 2 for more details (a copy is included in the LICENSE file that
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * accompanied this code).
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk *
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * You should have received a copy of the GNU General Public License version
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * 2 along with this work; if not, write to the Free Software Foundation,
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk *
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * or visit www.oracle.com if you need additional information or have any
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * questions.
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk *
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk */
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk/*
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk *
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk *
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk */
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk#ifndef __INDICREARRANGEMENT_H
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk#define __INDICREARRANGEMENT_H
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk/**
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * \file
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk * \internal
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk */
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk#include "LETypes.h"
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk#include "LayoutTables.h"
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk#include "StateTables.h"
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk#include "MorphTables.h"
4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22jeff.schenk#include "MorphStateTables.h"
U_NAMESPACE_BEGIN
struct IndicRearrangementSubtableHeader : MorphStateTableHeader
{
};
enum IndicRearrangementFlags
{
irfMarkFirst = 0x8000,
irfDontAdvance = 0x4000,
irfMarkLast = 0x2000,
irfReserved = 0x1FF0,
irfVerbMask = 0x000F
};
enum IndicRearrangementVerb
{
irvNoAction = 0x0000, /* no action */
irvxA = 0x0001, /* Ax => xA */
irvDx = 0x0002, /* xD => Dx */
irvDxA = 0x0003, /* AxD => DxA */
irvxAB = 0x0004, /* ABx => xAB */
irvxBA = 0x0005, /* ABx => xBA */
irvCDx = 0x0006, /* xCD => CDx */
irvDCx = 0x0007, /* xCD => DCx */
irvCDxA = 0x0008, /* AxCD => CDxA */
irvDCxA = 0x0009, /* AxCD => DCxA */
irvDxAB = 0x000A, /* ABxD => DxAB */
irvDxBA = 0x000B, /* ABxD => DxBA */
irvCDxAB = 0x000C, /* ABxCD => CDxAB */
irvCDxBA = 0x000D, /* ABxCD => CDxBA */
irvDCxAB = 0x000E, /* ABxCD => DCxAB */
irvDCxBA = 0x000F /* ABxCD => DCxBA */
};
struct IndicRearrangementStateEntry : StateEntry
{
};
U_NAMESPACE_END
#endif