Path: blob/jdk8u272-b10-aarch32-20201026/jdk/src/share/native/common/unicode/dbbi.h
48729 views
// © 2016 and later: Unicode, Inc. and others.1// License & terms of use: http://www.unicode.org/copyright.html2/*3**********************************************************************4* Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved.5**********************************************************************6* Date Name Description7* 12/1/99 rgillam Complete port from Java.8* 01/13/2000 helena Added UErrorCode to ctors.9**********************************************************************10*/1112#ifndef DBBI_H13#define DBBI_H1415#include "unicode/rbbi.h"1617#if !UCONFIG_NO_BREAK_ITERATION1819/**20* \file21* \brief C++ API: Dictionary Based Break Iterator22*/2324U_NAMESPACE_BEGIN2526#ifndef U_HIDE_DEPRECATED_API27/**28* An obsolete subclass of RuleBasedBreakIterator. Handling of dictionary-29* based break iteration has been folded into the base class. This class30* is deprecated as of ICU 3.6.31* @deprecated ICU 3.632*/33typedef RuleBasedBreakIterator DictionaryBasedBreakIterator;3435#endif /* U_HIDE_DEPRECATED_API */3637U_NAMESPACE_END3839#endif /* #if !UCONFIG_NO_BREAK_ITERATION */4041#endif424344