]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
b75a7d8f A |
3 | /* |
4 | ********************************************************************** | |
51004dcb | 5 | * Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved. |
b75a7d8f A |
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 | ||
340931cb A |
16 | #include "unicode/utypes.h" |
17 | ||
18 | #if U_SHOW_CPLUSPLUS_API | |
19 | ||
b75a7d8f A |
20 | #include "unicode/rbbi.h" |
21 | ||
22 | #if !UCONFIG_NO_BREAK_ITERATION | |
23 | ||
73c04bcf A |
24 | /** |
25 | * \file | |
26 | * \brief C++ API: Dictionary Based Break Iterator | |
27 | */ | |
28 | ||
b75a7d8f A |
29 | U_NAMESPACE_BEGIN |
30 | ||
51004dcb | 31 | #ifndef U_HIDE_DEPRECATED_API |
b75a7d8f | 32 | /** |
73c04bcf A |
33 | * An obsolete subclass of RuleBasedBreakIterator. Handling of dictionary- |
34 | * based break iteration has been folded into the base class. This class | |
35 | * is deprecated as of ICU 3.6. | |
57a6839d | 36 | * @deprecated ICU 3.6 |
b75a7d8f | 37 | */ |
73c04bcf | 38 | typedef RuleBasedBreakIterator DictionaryBasedBreakIterator; |
b75a7d8f | 39 | |
51004dcb | 40 | #endif /* U_HIDE_DEPRECATED_API */ |
b75a7d8f | 41 | |
b75a7d8f A |
42 | U_NAMESPACE_END |
43 | ||
44 | #endif /* #if !UCONFIG_NO_BREAK_ITERATION */ | |
45 | ||
340931cb A |
46 | #endif /* U_SHOW_CPLUSPLUS_API */ |
47 | ||
b75a7d8f | 48 | #endif |