]> git.saurik.com Git - apple/icu.git/blob - icuSources/common/unicode/dbbi.h
ICU-59117.0.1.tar.gz
[apple/icu.git] / icuSources / common / unicode / dbbi.h
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 **********************************************************************
5 * Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved.
6 **********************************************************************
7 * Date Name Description
8 * 12/1/99 rgillam Complete port from Java.
9 * 01/13/2000 helena Added UErrorCode to ctors.
10 **********************************************************************
11 */
12
13 #ifndef DBBI_H
14 #define DBBI_H
15
16 #include "unicode/rbbi.h"
17
18 #if !UCONFIG_NO_BREAK_ITERATION
19
20 /**
21 * \file
22 * \brief C++ API: Dictionary Based Break Iterator
23 */
24
25 #if U_SHOW_CPLUSPLUS_API
26 U_NAMESPACE_BEGIN
27
28 #ifndef U_HIDE_DEPRECATED_API
29 /**
30 * An obsolete subclass of RuleBasedBreakIterator. Handling of dictionary-
31 * based break iteration has been folded into the base class. This class
32 * is deprecated as of ICU 3.6.
33 * @deprecated ICU 3.6
34 */
35 typedef RuleBasedBreakIterator DictionaryBasedBreakIterator;
36
37 #endif /* U_HIDE_DEPRECATED_API */
38
39 U_NAMESPACE_END
40 #endif // U_SHOW_CPLUSPLUS_API
41
42 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */
43
44 #endif