From 5110c4743751145c4ae1934cd1d83bc6c55bb43f Mon Sep 17 00:00:00 2001 From: John Abd-El-Malek Date: Sat, 17 May 2014 22:33:34 -0700 Subject: Initial commit. --- core/include/fxcrt/fx_arb.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 core/include/fxcrt/fx_arb.h (limited to 'core/include/fxcrt/fx_arb.h') diff --git a/core/include/fxcrt/fx_arb.h b/core/include/fxcrt/fx_arb.h new file mode 100644 index 0000000000..4950f81716 --- /dev/null +++ b/core/include/fxcrt/fx_arb.h @@ -0,0 +1,20 @@ +// Copyright 2014 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#ifndef _FX_ARABIC_ +#define _FX_ARABIC_ +class IFX_BidiChar +{ +public: + static IFX_BidiChar* Create(); + virtual void Release() = 0; + virtual void SetPolicy(FX_BOOL bSeparateNeutral = TRUE) = 0; + virtual FX_BOOL AppendChar(FX_WCHAR wch) = 0; + virtual FX_BOOL EndChar() = 0; + virtual FX_INT32 GetBidiInfo(FX_INT32 &iStart, FX_INT32 &iCount) = 0; + virtual void Reset() = 0; +}; +#endif -- cgit v1.2.3