// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * * Copyright (C) 2001-2008, International Business Machines * Corporation and others. All Rights Reserved. * ******************************************************************************* * file name: casetrn.h * encoding: UTF-8 * tab size: 8 (not used) * indentation:4 * * created on: 2004sep03 * created by: Markus W. Scherer * * Implementation class for lower-/upper-/title-casing transliterators. */ #ifndef __CASETRN_H__ #define __CASETRN_H__ #include "unicode/utypes.h" #if !UCONFIG_NO_TRANSLITERATION #include "unicode/translit.h" #include "ucase.h" U_NAMESPACE_BEGIN /** * A transliterator that performs locale-sensitive * case mapping. */ class CaseMapTransliterator : public Transliterator { … }; U_NAMESPACE_END /** case context iterator using a Replaceable. This must be a C function because it is a callback. */ U_CFUNC UChar32 U_CALLCONV utrans_rep_caseContextIterator(void *context, int8_t dir); #endif /* #if !UCONFIG_NO_TRANSLITERATION */ #endif