Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/unicode/dbbi.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // © 2016 and later: Unicode, Inc. and others.
0002 // License & terms of use: http://www.unicode.org/copyright.html
0003 /*
0004 **********************************************************************
0005 *   Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved.
0006 **********************************************************************
0007 *   Date        Name        Description
0008 *   12/1/99    rgillam     Complete port from Java.
0009 *   01/13/2000 helena      Added UErrorCode to ctors.
0010 **********************************************************************
0011 */
0012 
0013 #ifndef DBBI_H
0014 #define DBBI_H
0015 
0016 #include "unicode/utypes.h"
0017 
0018 #if U_SHOW_CPLUSPLUS_API
0019 
0020 #include "unicode/rbbi.h"
0021 
0022 #if !UCONFIG_NO_BREAK_ITERATION
0023 
0024 /**
0025  * \file
0026  * \brief C++ API: Dictionary Based Break Iterator
0027  */
0028  
0029 U_NAMESPACE_BEGIN
0030 
0031 #ifndef U_HIDE_DEPRECATED_API
0032 /**
0033  * An obsolete subclass of RuleBasedBreakIterator. Handling of dictionary-
0034  * based break iteration has been folded into the base class. This class
0035  * is deprecated as of ICU 3.6.
0036  * @deprecated ICU 3.6
0037  */
0038 typedef RuleBasedBreakIterator DictionaryBasedBreakIterator;
0039 
0040 #endif  /* U_HIDE_DEPRECATED_API */
0041 
0042 U_NAMESPACE_END
0043 
0044 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */
0045 
0046 #endif /* U_SHOW_CPLUSPLUS_API */
0047 
0048 #endif