1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/common/unicode/dbbi.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,40 @@ 1.4 +/* 1.5 +********************************************************************** 1.6 +* Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved. 1.7 +********************************************************************** 1.8 +* Date Name Description 1.9 +* 12/1/99 rgillam Complete port from Java. 1.10 +* 01/13/2000 helena Added UErrorCode to ctors. 1.11 +********************************************************************** 1.12 +*/ 1.13 + 1.14 +#ifndef DBBI_H 1.15 +#define DBBI_H 1.16 + 1.17 +#include "unicode/rbbi.h" 1.18 + 1.19 +#if !UCONFIG_NO_BREAK_ITERATION 1.20 + 1.21 +/** 1.22 + * \file 1.23 + * \brief C++ API: Dictionary Based Break Iterator 1.24 + */ 1.25 + 1.26 +U_NAMESPACE_BEGIN 1.27 + 1.28 +#ifndef U_HIDE_DEPRECATED_API 1.29 +/** 1.30 + * An obsolete subclass of RuleBasedBreakIterator. Handling of dictionary- 1.31 + * based break iteration has been folded into the base class. This class 1.32 + * is deprecated as of ICU 3.6. 1.33 + * @deprecated ICU 3.6 1.34 + */ 1.35 +typedef RuleBasedBreakIterator DictionaryBasedBreakIterator; 1.36 + 1.37 +#endif /* U_HIDE_DEPRECATED_API */ 1.38 + 1.39 +U_NAMESPACE_END 1.40 + 1.41 +#endif /* #if !UCONFIG_NO_BREAK_ITERATION */ 1.42 + 1.43 +#endif