ICU 54.1  54.1
filteredbrk.h
Go to the documentation of this file.
1 /*
2 ********************************************************************************
3 * Copyright (C) 1997-2014, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 ********************************************************************************
6 */
7 
8 #ifndef FILTEREDBRK_H
9 #define FILTEREDBRK_H
10 
11 #include "unicode/utypes.h"
12 #include "unicode/brkiter.h"
13 
14 #if !UCONFIG_NO_BREAK_ITERATION && !UCONFIG_NO_FILTERED_BREAK_ITERATION
15 #ifndef U_HIDE_INTERNAL_API
16 
18 
48  public:
54 
67  static FilteredBreakIteratorBuilder *createInstance(const Locale& where, UErrorCode& status);
68 
76  static FilteredBreakIteratorBuilder *createInstance(UErrorCode &status);
77 
88  virtual UBool suppressBreakAfter(const UnicodeString& string, UErrorCode& status) = 0;
89 
101  virtual UBool unsuppressBreakAfter(const UnicodeString& string, UErrorCode& status) = 0;
102 
115  virtual BreakIterator *build(BreakIterator* adoptBreakIterator, UErrorCode& status) = 0;
116 
117  protected:
123 };
124 
125 
127 
128 #endif /* U_HIDE_INTERNAL_API */
129 #endif // #if !UCONFIG_NO_BREAK_ITERATION && !UCONFIG_NO_FILTERED_BREAK_ITERATION
130 
131 #endif // #ifndef FILTEREDBRK_H
C++ API: Break Iterator.
#define U_I18N_API
Set to export library symbols from inside the i18n library, and to import them from outside...
Definition: utypes.h:358
#define U_NAMESPACE_BEGIN
This is used to begin a declaration of a public ICU C++ API.
Definition: uversion.h:129
The BreakIterator class implements methods for finding the location of boundaries in text...
Definition: brkiter.h:100
#define U_NAMESPACE_END
This is used to end a declaration of a public ICU C++ API.
Definition: uversion.h:130
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers...
Definition: utypes.h:476
Basic definitions for ICU, for both C and C++ APIs.
UnicodeString is a string class that stores Unicode characters directly and provides similar function...
Definition: unistr.h:245
The BreakIteratorFilter is used to modify the behavior of a BreakIterator by constructing a new Break...
Definition: filteredbrk.h:47
UObject is the common ICU "boilerplate" class.
Definition: uobject.h:221
int8_t UBool
The ICU boolean type.
Definition: umachine.h:234
A Locale object represents a specific geographical, political, or cultural region.
Definition: locid.h:185