]> git.saurik.com Git - apple/icu.git/blob - icuSources/common/ustrenum.h
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / common / ustrenum.h
1 /*
2 **********************************************************************
3 * Copyright (c) 2002, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
6 * Author: Alan Liu
7 * Created: November 11 2002
8 * Since: ICU 2.4
9 **********************************************************************
10 */
11 #ifndef _USTRENUM_H_
12 #define _USTRENUM_H_
13
14 #include "unicode/uenum.h"
15 #include "unicode/strenum.h"
16
17 /**
18 * Given a StringEnumeration, wrap it in a UEnumeration. The
19 * StringEnumeration is adopted; after this call, the caller must not
20 * delete it (regardless of error status).
21 */
22 U_CAPI UEnumeration* U_EXPORT2
23 uenum_openStringEnumeration(StringEnumeration* adopted, UErrorCode* ec);
24
25 /* _USTRENUM_H_ */
26 #endif
27 /*eof*/