Skip to content

Commit

Permalink
ICU-22534 Changed ExternalBreakEngine so that it's surrounded by U_HI…
Browse files Browse the repository at this point in the history
…DE_INTERNAL_API instead of U_HIDE_DRAFT_API.
  • Loading branch information
richgillam committed Mar 9, 2024
1 parent 784056d commit 4c664b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions icu4c/source/common/unicode/rbbi.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class UnhandledEngine;
class UStack;


#ifndef U_HIDE_DRAFT_API
#ifndef U_HIDE_INTERNAL_API
/**
* The ExternalBreakEngine class define an abstract interface for the host environment
* to provide a low level facility to break text for unicode text in script that the text boundary
Expand Down Expand Up @@ -103,7 +103,7 @@ class ExternalBreakEngine : public UObject {
int32_t* foundBreaks, int32_t foundBreaksCapacity,
UErrorCode& status) const = 0;
};
#endif /* U_HIDE_DRAFT_API */
#endif /* U_HIDE_INTERNAL_API */


/**
Expand Down Expand Up @@ -797,7 +797,7 @@ class U_COMMON_API RuleBasedBreakIterator /*final*/ : public BreakIterator {
void dumpTables();
#endif /* U_HIDE_INTERNAL_API */

#ifndef U_HIDE_DRAFT_API
#ifndef U_HIDE_INTERNAL_API
/**
* Register a new external break engine. The external break engine will be adopted.
* Because ICU may choose to cache break engine internally, this must
Expand All @@ -809,7 +809,7 @@ class U_COMMON_API RuleBasedBreakIterator /*final*/ : public BreakIterator {
*/
static void U_EXPORT2 registerExternalBreakEngine(
ExternalBreakEngine* toAdopt, UErrorCode& status);
#endif /* U_HIDE_DRAFT_API */
#endif /* U_HIDE_INTERNAL_API */

};

Expand Down

0 comments on commit 4c664b2

Please sign in to comment.