]>
Commit | Line | Data |
---|---|---|
73c04bcf A |
1 | // |
2 | // localsvc.cpp -- Apple-specific service hook | |
3 | // Copyright (c) 2007 Apple Inc. All rights reserved. | |
4 | // | |
5 | ||
6 | #include "unicode/utypes.h" | |
7 | ||
8 | #if !UCONFIG_NO_BREAK_ITERATION | |
9 | ||
10 | #include "aaplbfct.h" | |
11 | #include "cstring.h" | |
4388f060 | 12 | // platform.h now includes <TargetConditionals.h> if U_PLATFORM_IS_DARWIN_BASED |
73c04bcf A |
13 | |
14 | // Return an appropriate Apple-specific object, based on the service in question | |
15 | U_CAPI void* uprv_svc_hook(const char *what, UErrorCode *status) | |
16 | { | |
17 | if (uprv_strcmp(what, "languageBreakFactory") == 0) { | |
4388f060 | 18 | #if U_PLATFORM_IS_DARWIN_BASED && TARGET_OS_MAC |
0f5d89e8 | 19 | return new icu::AppleLanguageBreakFactory(*status); |
73c04bcf A |
20 | } |
21 | #else | |
22 | } | |
23 | #endif | |
24 | return NULL; | |
25 | } | |
26 | ||
27 | #endif |