2000-01-10 21:21:52 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
2006-03-23 00:54:12 +00:00
|
|
|
* Copyright (C) 1999-2006 IBM Corp. All rights reserved.
|
2000-01-10 21:21:52 +00:00
|
|
|
**********************************************************************
|
|
|
|
* Date Name Description
|
|
|
|
* 12/1/99 rgillam Complete port from Java.
|
2000-01-14 00:13:59 +00:00
|
|
|
* 01/13/2000 helena Added UErrorCode to ctors.
|
2000-01-10 21:21:52 +00:00
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DBBI_H
|
|
|
|
#define DBBI_H
|
|
|
|
|
|
|
|
#include "unicode/rbbi.h"
|
|
|
|
|
2002-09-20 01:54:48 +00:00
|
|
|
#if !UCONFIG_NO_BREAK_ITERATION
|
|
|
|
|
2005-06-22 22:39:36 +00:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \brief C++ API: Dictionary Based Break Iterator
|
|
|
|
*/
|
|
|
|
|
2001-10-08 23:26:58 +00:00
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2000-01-10 21:21:52 +00:00
|
|
|
/**
|
2006-03-23 00:54:12 +00:00
|
|
|
* An obsolete subclass of RuleBasedBreakIterator. Handling of dictionary-
|
|
|
|
* based break iteration has been folded into the base class. This class
|
|
|
|
* is deprecated as of ICU 3.6.
|
2000-01-10 21:21:52 +00:00
|
|
|
*/
|
2006-03-23 00:54:12 +00:00
|
|
|
|
|
|
|
#ifndef U_HIDE_DEPRECATED_API
|
2000-01-10 21:21:52 +00:00
|
|
|
|
2006-03-23 00:54:12 +00:00
|
|
|
typedef RuleBasedBreakIterator DictionaryBasedBreakIterator;
|
2000-01-10 21:21:52 +00:00
|
|
|
|
2006-03-23 00:54:12 +00:00
|
|
|
#endif
|
2000-01-10 21:21:52 +00:00
|
|
|
|
2001-10-08 23:26:58 +00:00
|
|
|
U_NAMESPACE_END
|
2000-01-10 21:21:52 +00:00
|
|
|
|
2002-09-20 01:54:48 +00:00
|
|
|
#endif /* #if !UCONFIG_NO_BREAK_ITERATION */
|
|
|
|
|
2000-01-10 21:21:52 +00:00
|
|
|
#endif
|